我需要在程序中使用“ö”,“ä”.“ü”,但是java / android不会让我
作者:互联网
我需要我的程序将请求发送到服务器.问题是,服务器只能识别ös,äsundüs,但是JAVA和/或Android不知道它们. `如何在不使用JAVA / Android“更改”ö….的情况下使用“Hermann-Löns”之类的字符串发送请求. ..
谢谢!
@BalausC:
我将您的代码更改为:
我不确定这是否是您指的正确字段…
String url = "http://busspur02.aseag.de/bs.exe?SID=473A2&ScreenX=1440&ScreenY=900&CMD=CR&DatumT=30&DatumM=4&DatumJ=2010&AbfAnk=Abf&ZeitH=10&ZeitM=45&Intervall=60&Loeschen=%28N%29eue+Suche";
String charset = "CP1252";
List<NameValuePair> params = new ArrayList<NameValuePair>();
params.add(new BasicNameValuePair("HTO", start_from));
params.add(new BasicNameValuePair("HT1", destination));
UrlEncodedFormEntity query = new UrlEncodedFormEntity(params, charset);
HttpPost post = new HttpPost(url);
post.setEntity(query);
InputStream response = new DefaultHttpClient().execute(post).getContent();
// Now do your thing with the facebook response.
我无法编译,因为出现错误消息:
The method getContent() is undefined
for the type HttpResponse
如果我删除getContent()是说:
Type mismatch: cannot convert from HttpResponse to InputStream
还有一件事:我使用htmlparser(http://htmlparser.sourceforge.net/)解析生成的网站.如何访问生成的html网站进行解析?因为否则我将不得不重写几乎所有代码以获取结果.
解决方法:
到目前为止,您需要使用具有适当字符编码的java.net.URLEncoder来对请求参数中的特殊字符进行编码.
String param = URLEncoder.encode("Hermann-Löns", "CP1252");
确保在HTTP请求中指定一个Accept-Charset:CP1252标头.有关如何使用正确的编码激发HTTP请求的更完整的代码示例,请检查我在一小时前发布的this answer.它还涵盖了HttpClient示例,该示例也包含在Android中.
标签:unicode,special-characters,java,android 来源: https://codeday.me/bug/20191106/2000183.html