Java デスクトップ アプリケーションから jsp サーブレットに接続してファイルを送信しようとしています。
クライアントコーディング:
HttpURLConnection urlConnection = null;
URL url = null;
url = new URL("http://127.0.0.1:8080/emobile/AddTripMobile");
urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setDoOutput(true);
OutputStream out = new BufferedOutputStream(
urlConnection.getOutputStream());
out.write(12); //The data to send
out.flush();
デスクトップ アプリケーションでサーバーに接続しても、何も起こりません。(doGet と doPost にブレークポイントを設定しました)
助言がありますか?