0

プロキシ サーバーの背後に保存されている XML ファイルの解析をどのように処理しますか? 次のコードがあります。

import java.io.IOException;
import java.net.URL;

import org.jdom.Document;
import org.jdom.JDOMException;
import org.jdom.input.SAXBuilder;

public class FileParsing {
    public static void parseXMLFile(String xmlFilePath) throws IOException, JDOMException {
            URL xmlFileURL = new URL(xmlFilePath);
            SAXBuilder builder = new SAXBuilder();
            Document xmlDoc = builder.build(xmlFileURL);

            // File parsing code...
    }
}

今、私はこの例外を受け取ります:

 java.io.IOException: Server returned HTTP response code: 502 for URL: https://proxyserver.com/xmlFileOfInterest.xml

これは、ファイルがプロキシ サーバー上にあるためだと思います。これが私の問題の原因ですか?もしそうなら、プロキシ サーバー上にあるファイルを処理する適切な方法は何ですか?

4

1 に答える 1

0

Apache Webclient を使用して解析できます

WebClient client = WebClient.create(xmlFilePath
                ,String.class,null);    
        client = client.type(MediaType.APPLICATION_XML);

HTTPConduit httpConduit = (HTTPConduit)WebClient.getConfig(client).getConduit();
        HTTPClientPolicy policy = new HTTPClientPolicy();               
        policy.setProxyServer(proxyurl);
        policy.setProxyServerPort(8080);
        httpConduit.setClient(policy);

    Response r = client.post(); 
InputStream response= (InputStream)r.getEntity();   
于 2013-09-30T22:40:46.410 に答える