如何在java代碼中調用一個web項目jsp或者servlet

來源:互聯網
上載者:User

標籤:

有時候需要調用一個web項目的jsp或者servlet,但是執行內部的代碼,並不是開啟jsp,例如需要在一段java代碼中清除一個web項目中的緩衝,那麼可以把清除緩衝的代碼放在該web項目的一個servlet中,只需要執行如下代碼:

URL url = new URL("http://192.168.2.123:8080/sace/ClearCache");url.openStream();

openStream() 執行一次相當於一次URL請求,其中url.openStream() = url.openConnection().getInputStream();

其中ClearCache是web項目中一個servlet

 

InputStream is = url.openStream();BufferedReader br = new BufferedReader(new InputStreamReader(is));String line = null;while((line = br.readLine()) != null) {    System.out.println(line);  }

上面代碼可以取出返回的頁面內容

如何在java代碼中調用一個web項目jsp或者servlet

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.