私はソケットプログラミングが初めてです。
Android で特定の IP (例: 184.267.345.65) & ポート (例: 53) に接続したいのですが、どうすれば可能でしょうか?
前もって感謝します。
私はソケットプログラミングが初めてです。
Android で特定の IP (例: 184.267.345.65) & ポート (例: 53) に接続したいのですが、どうすれば可能でしょうか?
前もって感謝します。
URLConnection connection = null;
URL url = null;
InputStream is = null;
String mUrl="IP ADDRESS AND PORT NUMBER";
try {
url = new URL(mUrl);
connection = url.openConnection();
connection.setRequestProperty("Accept", "SPECIFY ACCEPT TYPE");
is = connection.getInputStream();
String data=convertStreamToString(is);
} catch (Exception e) {
Log.i("Exception while reading inputstream From URL :"+mUrl, e.getMessage());
e.printStackTrace();
}