0

JSON を使用して Web サービスを作成しました。それを解析してリストビューに表示したいと考えています。しかし、アプリケーションを実行すると強制終了し、エラー メッセージが表示されます。コードを確認してください。何か問題がありますか?

アプリケーションを実行しようとすると、次のエラー メッセージが表示されます。

org.json.JSONException: Value <?xml of type java.lang.String cannot be converted to JSONObject

これが私のコードです:

public class WeeklyFlashActivity extends ListActivity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.listplaceholder);

        ArrayList<HashMap<String, String>> mylist = new ArrayList<HashMap<String, String>>();


        JSONObject json = JSONfunctions.getJSONfromURL("http://www.greenfields.co.id:502/Service1.svc/json/weeklyflash");

        try{

            JSONArray  weeklyflash = json.getJSONArray("GetReportResult");

            for(int i=0;i<weeklyflash.length();i++){                        
                HashMap<String, String> map = new HashMap<String, String>();    
                JSONObject e = weeklyflash.getJSONObject(i);

                //map.put("type",  String.valueOf(i));
                map.put("type", e.getString("type"));
                map.put("total", e.getString("total"));

                mylist.add(map);            
            }       
        }catch(JSONException e)        {
             Log.e("log_tag", "Error parsing data "+e.toString());
        }

        ListAdapter adapter = new SimpleAdapter(this, mylist , R.layout.main, 
                        new String[] { "type", "total" }, 
                        new int[] { R.id.item_title, R.id.item_subtitle });

        setListAdapter(adapter);

        final ListView lv = getListView();
        lv.setTextFilterEnabled(true);  
        lv.setOnItemClickListener(new OnItemClickListener() {
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {              
                @SuppressWarnings("unchecked")
                HashMap<String, String> o = (HashMap<String, String>) lv.getItemAtPosition(position);                   
                Toast.makeText(WeeklyFlashActivity.this, "Type " + o.get("type") + " was clicked.", Toast.LENGTH_SHORT).show(); 

            }
        });
    }
}

ここに私のJSON変数があります:

{"GetReportResult":[{"total":"249319","type":"ESL500ML"},{"total":"19802","type":"CHEESE1K"},{"total":"3179380","type":"ESL"},{"total":"201243","type":"WHP"},{"total":"736744.136","type":"UHT"}]}

ここに私のJSON関数があります:

public class JSONfunctions {
    public static JSONObject getJSONfromURL(String url){

        //initialize
        InputStream is = null;
        String result = "";
        JSONObject jArray = null;

        //http post
        try{
            HttpClient httpclient = new DefaultHttpClient();
            HttpPost httppost = new HttpPost(url);
            HttpResponse response = httpclient.execute(httppost);
            HttpEntity entity = response.getEntity();
            is = entity.getContent();

        }catch(Exception e){
            Log.e("log_tag", "Error in http connection "+e.toString());
        }

        //convert response to string
        try{
            BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            result=sb.toString();
        }catch(Exception e){
            Log.e("log_tag", "Error converting result "+e.toString());
        }

        //try parse the string to a JSON object
        try{
                jArray = new JSONObject(result);
        }catch(JSONException e){
            Log.e("log_tag", "Error parsing data "+e.toString());
        }

        return jArray;
    }

}

更新:結果を確認しましたが、結果はhtmlコードでありMethod not allowed.、問​​題はwcfサービスに起因する可能性があります。これに対する解決策はありますか?

ここに私のwcfサービスがあります:

[WebInvoke(Method = "GET",
            ResponseFormat = WebMessageFormat.Json,
            BodyStyle = WebMessageBodyStyle.Wrapped,
            UriTemplate = "/json/weeklyflash")]

問題の回避策を見つけました。Heroku では、「Memcache Add On」を構成すると、次の環境変数が提供されます。

${MEMCACHE_PASSWORD}       
${MEMCACHE_SERVERS}   
${MEMCACHE_USERNAME}

ただし、%prod.memcached.host=${MEMCACHE_SERVERS} を設定すると、正しく動作するためにデフォルトのポートも必要になります (つまり、${MEMCACHE_SERVERS}:11211)。

したがって、次のようにして追加の環境変数を追加できます。

  1. heroku config:add MEMCACHE_SERVER=${MEMCACHE_SERVERS}:11211あなたのコンソールで
  2. %prod.memcached.host=${MEMCACHE_SERVER}confファイルに設定します
  3. アプリを再起動します

- -また - -

${MEMCACHE_SERVERS}conf ファイルの環境変数の末尾にポート (11211) を追加する方法を見つけます。「:」文字のため、起動時に例外がスローされるため、どうすればよいかわかりません。

play 2.x でも同じエラーが発生しましたが、play 1.x でも動作するはずです。

4

4 に答える 4

6

このエラーは多くの人が遭遇しています。charSet を変更することで解決できます。iso-8859-1 の代わりに UTF-8 を使用してみてください。

次の行を変更します。

BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8);

BufferedReader reader = new BufferedReader(new InputStreamReader(is,"UTF-8"),8);
于 2012-06-25T10:05:36.147 に答える
2

最後に私は自分の問題を解決しました。問題は私のhttp接続方法にあります。最近の投稿では、それが使用されHttpPost、私のwcfサービス方法はGET.Method not allowed

したがって、http接続でhttpメソッドを次のHttpGetように変更することで解決策を見つけます:
HttpGet httpget = new HttpGet(url);

それは私にとってはうまくいきます。私の質問に答えてコメントしてくれた皆さんありがとう:)

于 2012-06-26T02:57:23.610 に答える
1

HttpPost メソッドを使用してサーバーからデータを取得しているように見えます

        HttpPost httppost = new HttpPost(url);
        HttpResponse response = httpclient.execute(httppost);

しかし、エラーごとMethod not allowed.

[WebInvoke(Method = "GET",
            ResponseFormat = WebMessageFormat.Json,
            BodyStyle = WebMessageBodyStyle.Wrapped,
            UriTemplate = "/json/weeklyflash")]

1- HttpPost の代わりに HttpGet を使用する必要があるようです。

2- response.getStatusLine().getStatusCode() == HttpStatus.SC_OK または 200 (OK の場合) などを使用して、次のような応答を処理します。

HttpResponse response = httpclient.execute(new HttpGet(URL));
    StatusLine statusLine = response.getStatusLine();
     inst statusCode= statusLine.getStatusCode();
    if( statusCode== HttpStatus.SC_OK){
        ByteArrayOutputStream out = new ByteArrayOutputStream();
        response.getEntity().writeTo(out);
        out.close();
        String responseString = out.toString();
        //..more logic
    }else if(statusCode == HttpStatus.SC_BAD_REQUEST){
             //error bad request shoe message BAD_REQUEST

       }else if(statusCode == HttpStatus.SC_BAD_GATEWAY){
             //error bad request shoe message BAD_GATEWAY

       }     

さらに、すべてが必須ではありません HttpStatus.SC_OK だけがマスト重要なものです...

于 2012-06-26T03:57:02.570 に答える