3

我有一个这样的方法:

Address address = new Geocoder(context).getFromLocation(latitude, longitude, 5).get(0);
return address.getThoroughfare() + ", " + address.getSubThoroughfare() + ", " + address.getSubLocality();

当我打印结果时, 的值address.getSubLocality()显示一个日语字符串。

为什么会这样?

我该如何解决这个问题?

谢谢!

编辑

我的完整示例项目:

public class MainActivity extends Activity implements View.OnClickListener {

    EditText ed1, ed2;
    TextView tv1;
    Button bt1;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        ed1 = (EditText) findViewById(R.id.ed1);
        ed2 = (EditText) findViewById(R.id.ed2);
        tv1 = (TextView) findViewById(R.id.tv1);
        bt1 = (Button) findViewById(R.id.bt1);

        ed1.setText("-23.50282");
        ed2.setText("-46.84905");

        bt1.setOnClickListener(this);
    }

    public static String getAddressFromLocation(Context context, Double latitude, Double longitude) throws IOException {
        Address address = new Geocoder(context, Locale.ENGLISH).getFromLocation(latitude, longitude, 5).get(0);
        return address.getThoroughfare() + ", " + address.getSubThoroughfare() + ", " + address.getSubLocality() + " - " + address.getAdminArea();
    }

    @Override
    public void onClick(View v) {
        String address = "Street";
        if (v.getId() == R.id.bt1) {
            try {
                address = getAddressFromLocation(this, Double.parseDouble(ed1.getText().toString()), Double.parseDouble(ed2.getText().toString()));
            } catch (IOException e) {
                e.printStackTrace();
            }
            tv1.setText(address);
        }
    }
}
4

2 回答 2

2

它以这种方式返回,因为这就是它在Google Maps中的标记方式。您看到的日文字符 ( アウファヴィーレ) 代表Alphaville,这是该地区的一家开发公司。

为什么有人用日语标记它,我不知道。不过,您对此无能为力。附近的其他位置不会以这种方式标记。

于 2013-09-30T14:02:29.587 回答
-1

Geocoder类的构造函数将Locale Object 作为参数。有了这个,您可以使用任何受支持的语言进行输出。如果您没有设置显式本地,如在您的代码片段中,则默认使用 Locale.getDefault()。

Address address = new Geocoder(context, Locale.ENGLISH)
        .getFromLocation(latitude, longitude, 5).get(0);
于 2013-09-27T22:20:45.560 回答