PHPファイルからAndroidアプリケーションに文字列を返そうとしています。phpファイルはjson形式ではありません。jsonobjectはエラー07-28 20:10:56.538: W/System.err(2936): org.json.JSONException: Value <!DOCTYPE of type java.lang.String cannot be converted to JSONObject
を返すだけです。SAXParserも試しましたが、これはxmlファイル専用であることを理解しています。StringBuilder
そんなものを使うと
public static String iStream_to_String(InputStream is1) {
BufferedReader rd = new BufferedReader(new InputStreamReader(is1), 8192);
String line;
StringBuilder sb = new StringBuilder();
String longitudecord = "";
try {
while ((line = rd.readLine()) != null) {
sb.append(line+"\n");
}
// rd.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
String contentOfMyInputStream = sb.toString();
return contentOfMyInputStream;
}
このような応答<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
が返されます。取得したい応答は、指定されたエラーファイルを返す単純な文字列です。jsonなしでそのような単純なタスクを実行するための可能な方法はありますか?
また、phpのファイルタイプを追加したいのですがapplication/x-httpd-php
、それが役立つかどうかです。