次のコードがあります。ローカルの開発サーバーではまったく問題なく動作しますが、展開サーバーにアップロードすると、常にファイルが見つからないという例外が発生します
String urlStr = "http://" + getContext().getRequest().getServerName() +
getContext().getServletContext().getContextPath() + "test.action";
URL url = new URL(urlStr);
InputStream input = url.openStream(); //Error always occurs here, it gives me the correct URL but it says file not found.
誰でもこれで私を助けることができますか?