最近、クライアントアクセスサーバーの開発に関するユースケースを探しています。いつも他の人のWebサイトにアクセスしているのですが、その中のデータを変更する方法がわかりません。オンラインで無料のサーバーWebサイトを申請し、phpファイルをアップロードしました。 . これで、urlStr===http://1.hellowes.sinaapp.com/ を介してサーバー上の情報にアクセスできるようになり、サーバーは PHP をまったく知らないので、何が返されるかを確認します。サーバー上の は実際のデータではないため、クライアント文字列を JSON ステートメントに結合し、JSONObject を通じて解析する必要がありました。
実装コードは以下に掲載されており、最終的にサーバーから情報を取得できます。
public JSONObject getweb(String urlStr) throws Exception{ StringBuffer sb = new StringBuffer(); try {
URL url = new URL(urlStr);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn. setRequestMethod("GET");
conn.setConnectTime out (5000);
conn.setDoInput(true);
conn.setDoOutput(true);
if(conn.getResponseCode() == 200){
InputStream is = conn .getInputStream();
int len = 0;
byte[] buf = new byte[1024];
while((len = is.read(buf)) != -1){
sb.append(new String(buf, 0, len, "UTF-8") ; .printStackTrace();
throw new Exception("ネットワーク 11 へのアクセスに失敗しました");
}
System.out.println("------ ---"+sb.toString());
文字列 htmlStr = sb.toString();
htmlStr = htmlStr.replaceAll(""", "'");
htmlStr = "{'singer':"+htmlStr+ "}";
JSONObject jsonObj = null;
{
jsonObj = new JSONObject(htmlStr).getJSONObject("singer");
System. out.println("jsonObj===="+jsonObj);
} catch (JSONException e1) {
// TODO 自動生成された catch ブロック
e1.printStackTrace();
}
return jsonObj;
}
上記は、Android クライアントが自身で構築したサーバーにアクセスし、解析および学習用の JSON データを返す様子を内容も含めて紹介しました。PHP チュートリアルに興味のある友人の参考になれば幸いです。