これは私のコードです:listofitems.txtファイルを含む私のシステムのIPアドレスを使用しています:
try {
Create a URL for the desired page
String ipadd=ip.getText().toString();
URL url = new URL("http://192.168.1.2/listofitems.txt");
// Read all the text returned by the server
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str = in.readLine();
String[] items = new String[]{
items = str.split(",");
in.close();
} catch (MalformedURLException e) {
} catch (IOException e) {
}
タブレットを無線ルーター(WLAN)でシステムに接続しています。助けてください!!!ありがとうございました!!!