0

我正在一台与 LAN 中的服务器连接的计算机上工作。代理用于在我的计算机上访问互联网,现在我正在做关于使用 php Web 服务的项目,它提供 JSON 作为输出。我已经为它制作了一个应用程序,但它给出了空白回复,我读过一个堆栈溢出问题的答案,说这是因为代理。我是否必须在我的应用程序中设置代理设置。以及如何为这个问题设置代理。

我已经通过这一步设置了代理

  1. 点击菜单
  2. 点击设置
  3. 点击无线和网络
  4. 前往移动网络
  5. 转到接入点名称
  6. 在这里你会 Telkila Internet,点击它。
  7. 在编辑接入点部分,输入“代理”和“端口”
  8. 还提供用户名和密码,其余字段留空

互联网在模拟器中工作,但项目仍然没有显示。这是我的代码

package com.example.jsonexaple2;

import java.io.BufferedInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

import org.apache.http.util.ByteArrayBuffer;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.os.Bundle;
import android.app.Activity;
import android.util.Log;

public class Jsonexaple2 extends Activity {
    String archiveQuery = "http://www.archive.org/advancedsearch.php?q=Lotus&fl[]=date&fl[]=format&fl[]=identifier&fl[]=mediatype&fl[]=title&sort[]=createdate+desc&sort[]=&sort[]=&rows=10&page=1&output=json&callback=callback&save=yes";
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.jsonexaple2);
        InputStream in = null;
        String queryResult = "";
        try {
         URL url = new URL(archiveQuery);
         HttpURLConnection urlConn = (HttpURLConnection) url.openConnection();
         HttpURLConnection httpConn = (HttpURLConnection) urlConn;
         httpConn.setAllowUserInteraction(false);
         httpConn.connect();
         in = httpConn.getInputStream();
         BufferedInputStream bis = new BufferedInputStream(in);
         ByteArrayBuffer baf = new ByteArrayBuffer(50);
         int read = 0;
         int bufSize = 512;
         byte[] buffer = new byte[bufSize];
         while(true){
          read = bis.read(buffer);
          if(read==-1){
           break;
          }
          baf.append(buffer, 0, read);
         }
         queryResult = new String(baf.toByteArray());
        } catch (MalformedURLException e) {
         // DEBUG
         Log.e("DEBUG: ", e.toString());
        } catch (IOException e) {
         // DEBUG
         Log.e("DEBUG: ", e.toString());
        }
        JSONObject jObject;
        try {
         jObject = new JSONObject(queryResult.replace("callback(", "")).getJSONObject("response");
         JSONArray docsArray = jObject.getJSONArray("docs");
         for (int i = 0; i < 10; i++) {
          if (docsArray.getJSONObject(i).optString("mediatype").equals("etree")) {
           String title = docsArray.getJSONObject(i).optString("title");
           String identifier = docsArray.getJSONObject(i).optString("identifier");
           String date = docsArray.getJSONObject(i).optString("date");
           System.out.println(title + " " + identifier + " " + date);
          }
         }
        } catch (JSONException e) {
         // DEBUG
         Log.e("DEBUG: ", e.toString());
        }
    }

}
4

1 回答 1

0

是的,你必须。曾经,我在模拟器上遇到了同样的问题。我在谷歌上搜索,我发现这两个博客都不错。

希望对您有所帮助。

于 2012-08-22T08:29:34.197 回答