Search
Ad
|
新規
下位
一覧
検索
最新
ヘルプ
ページへ戻る
編集
複製
履歴
添付
印刷
Android/HttpClientからHttpURLConnectionへ移行する
をテンプレートにして作成
xpwiki
:Android/HttpClientからHttpURLConnectionへ移行する をテンプレートにして作成
開始行:
Androidの標準APIで用意されていたHttpClientはFroyo以降では...
いろいろな機能を使うような開発にはOkHttpなどのほうが人気...
GETでページの情報だけを取ってくるなら、
try {
URL url = new URL(YOUR_URL);
HttpURLConnection urlConnection = (HttpURLConnection) ur...
try {
InputStream in = new BufferedInputStream(urlConnection...
byte bodyByte[] = new byte[1024];
int readLen = in.read(bodyByte);
in.close();
return new String(bodyByte,0,readLen, "UTF-8");
}catch (Exception e){
urlConnection.disconnect();
Log.d(LOG_TAG,"connection error");
return null;
}
}catch (Exception e){
Log.d(LOG_TAG,"new URL error");
return null;
}
}
このようになります。ここでbyte[1024]はページのサイズに合...
また、UIスレッドからネットワークにアクセスするとエラーに...
終了行:
Androidの標準APIで用意されていたHttpClientはFroyo以降では...
いろいろな機能を使うような開発にはOkHttpなどのほうが人気...
GETでページの情報だけを取ってくるなら、
try {
URL url = new URL(YOUR_URL);
HttpURLConnection urlConnection = (HttpURLConnection) ur...
try {
InputStream in = new BufferedInputStream(urlConnection...
byte bodyByte[] = new byte[1024];
int readLen = in.read(bodyByte);
in.close();
return new String(bodyByte,0,readLen, "UTF-8");
}catch (Exception e){
urlConnection.disconnect();
Log.d(LOG_TAG,"connection error");
return null;
}
}catch (Exception e){
Log.d(LOG_TAG,"new URL error");
return null;
}
}
このようになります。ここでbyte[1024]はページのサイズに合...
また、UIスレッドからネットワークにアクセスするとエラーに...
ページ名:
ぺージ情報
ぺージ名 :
Android/HttpClientからHttpURLConnectionへ移行する
ページ別名 :
未設定
ページ作成 :
njf
閲覧可
グループ :
すべての訪問者
ユーザー :
すべての訪問者
編集可
グループ :
すべての訪問者
ユーザー :
すべての訪問者
Counter: 0, today: 0, yesterday: 0
MenuBar
20
最新の0件
広告
ログイン
ユーザー名:
パスワード:
パスワード紛失