私はjspにUIを持っていて、テキストボックスとボタンの2つのフィールドがあります。Javaスクリプトを使用せずに純粋なJavaコードでボタンをクリックした後、テキストボックスの値で場所の提案を表示したい
私はJavaで以下のコードを使用しています
System.setProperty("http.proxyHost","my proxy") ;
System.setProperty("http.proxyPort", "8080") ;
URL u = new URL("https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Vict&types=geocode&language=fr&sensor=true&key=KEY_AWESOMENESS");
HttpURLConnection con = (HttpURLConnection) u.openConnection();
//
// it's not the greatest idea to use a sun.misc.* class
// Sun strongly advises not to use them since they can
// change or go away in a future release so beware.
//
di = new DataInputStream(con.getInputStream());
while(-1 != di.read(b,0,1)) {
System.out.print(new String(b));
}
のようなエラーを与える
java.io.IOException: Server returned HTTP response code: 407 for URL: https://maps.googleapis.com/maps/api/place/autocomplete/json?input=Vict&types=geocode&language=fr&sensor=true&key=KEY_AWESOMENESS"
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1436)
どんな体でも私を助けることができますか?