web-dev-qa-db-ja.com

javaでURLからXML応答を読み取る方法は?

URLを取得し、XMLまたはJSONである応答を処理する単純な関数を作成する必要があります。SunのWebサイトを確認しました https://swingx-ws.dev.Java.net/servlets/ProjectDocumentList =、しかしHttpRequestオブジェクトはどこにも見当たりません、Javaでこれを行うことは可能ですか?リッチクライアントエンドアプリを作成しています。

45
Imran

入力ストリームのxml解析では、次のことができます。

// the SAX way:
XMLReader myReader = XMLReaderFactory.createXMLReader();
myReader.setContentHandler(handler);
myReader.parse(new InputSource(new URL(url).openStream()));

// or if you prefer DOM:
DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
DocumentBuilder db = dbf.newDocumentBuilder();
Document doc = db.parse(new URL(url).openStream());

しかし、サーバーからクライアントにhttp経由で通信するには、 hessian library を使用するか、http invoker libをスプリングする

79
Karussell

XMLを画面に直接印刷する場合は、TransformerFactoryを使用できます

URL url = new URL(urlString);
URLConnection conn = url.openConnection();

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();
Document doc = builder.parse(conn.getInputStream());

TransformerFactory transformerFactory= TransformerFactory.newInstance();
Transformer xform = transformerFactory.newTransformer();

// that’s the default xform; use a stylesheet to get a real one
xform.transform(new DOMSource(doc), new StreamResult(System.out));
9
thisisananth

次を使用して、通常のhttp-requestで応答を取得します。

次のステップはそれを解析することです。パーサーの選択については、 この記事 をご覧ください。

5
Bozho

SwingX-WS を具体的に使用する場合は、 XmlHttpRequest および JSONHttpRequest をご覧ください。

XMLHttpRequest and Swing ブログ投稿でこれらのクラスの詳細を確認してください。

3
Pascal Thivent

パーサーをインスタンス化しようとしたときに、上記の答えが例外を引き起こすことがわかりました。 http://docstore.mik.ua/orelly/xml/sax2/ch03_02.htm でこれを解決する次のコードを見つけました。

import org.xml.sax.*;
import javax.xml.parsers.*;

XMLReader        parser;

try {
    SAXParserFactory factory;

    factory = SAXParserFactory.newInstance ();
    factory.setNamespaceAware (true);
    parser = factory.newSAXParser ().getXMLReader ();
    // success!

} catch (FactoryConfigurationError err) {
    System.err.println ("can't create JAXP SAXParserFactory, "
    + err.getMessage ());
} catch (ParserConfigurationException err) {
    System.err.println ("can't create XMLReader with namespaces, "
    + err.getMessage ());
} catch (SAXException err) {
    System.err.println ("Hmm, SAXException, " + err.getMessage ());
}
1
badMonkey

OK私は以下の問題を解決していると思います

//
package xmlhttp;

import org.jdesktop.http.Response;

import org.jdesktop.http.Session;

import org.jdesktop.http.State;



public class GetXmlHttp{


    public static void main(String[] args) {

        getResponse();

    }

    public static void getResponse()
    {

        final Session session = new Session();

        try {
            String url="http://192.172.2.23:8080/geoserver/wfs?request=GetFeature&version=1.1.0&outputFormat=GML2&typeName=topp:networkcoverage,topp:tehsil&bbox=73.07846689124875,33.67929015631999,73.07946689124876,33.68029015632,EPSG:4326";
            final Response res=session.get(url);
            boolean notDone=true;
            do
            {
                System.out.print(session.getState().toString());

                if(session.getState()==State.DONE)
                {
                    String xml=res.toString();
                    System.out.println(xml);
                    notDone=false;


                }

            }while(notDone);

        } catch (Exception e1) {

            e1.printStackTrace();
        }


    }

}
1
Imran

このコードは、XMLを解析してJSON応答をラップし、ajaxを使用してフロントエンドに表示します。

Required JavaScript code.
<script type="text/javascript">
$.ajax({
        method:"GET",
        url: "javatpoint.html", 
        
        success : function(data) { 
                
                 var json=JSON.parse(data);     
                 var tbody=$('tbody');
                for(var i in json){
                        tbody.append('<tr><td>'+json[i].id+'</td>'+
                                        '<td>'+json[i].firstName+'</td>'+
                                        '<td>'+json[i].lastName+'</td>'+
                                        '<td>'+json[i].Download_DateTime+'</td>'+
                                        '<td>'+json[i].photo+'</td></tr>')
                }  
        },
        error : function () {
                alert('errorrrrr');
        }
                });
                
                </script>

[{"id": "1"、 "firstName": "Tom"、 "lastName": "Cruise"、 "photo": " https://pbs.twimg.com/profile_images/735509975649378305/B81JwLT7 .jpg "}、{" id ":" 2 "、" firstName ":" Maria "、" lastName ":" Sharapova "、" photo ":" https://pbs.twimg。 com/profile_images/3424509849/bfa1b9121afc39d1dcdb53cfc423bf12.jpeg "}、{" id ":" 3 "、" firstName ":" James "、" lastName ":" Bond "、" photo ":" https ://pbs.twimg.com/profile_images/664886718559076352/M00cOLrh.jpg "}]`

URL url=new URL("www.example.com"); 

        URLConnection si=url.openConnection();
        InputStream is=si.getInputStream();
        String str="";
        int i;
        while((i=is.read())!=-1){  
            str +=str.valueOf((char)i);
            }

        str =str.replace("</string>", "");
        str=str.replace("<?xml version=\"1.0\" encoding=\"utf-8\"?>", "");
        str = str.replace("<string xmlns=\"http://tempuri.org/\">", "");
        PrintWriter out=resp.getWriter();
        out.println(str);

`

1
Suneel

次のコードでそれを行います:

DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();

    try {
        DocumentBuilder builder = builderFactory.newDocumentBuilder();
        Document doc = builder.parse("/home/codefelix/IdeaProjects/Gradle/src/main/resources/static/Employees.xml");
        NodeList namelist = (NodeList) doc.getElementById("1");

        for (int i = 0; i < namelist.getLength(); i++) {
            Node p = namelist.item(i);

            if (p.getNodeType() == Node.ELEMENT_NODE) {
                Element person = (Element) p;
                NodeList id = (NodeList) person.getElementsByTagName("Employee");
                NodeList nodeList = person.getChildNodes();
                List<EmployeeDto> employeeDtoList=new ArrayList();

                for (int j = 0; j < nodeList.getLength(); j++) {
                    Node n = nodeList.item(j);

                    if (n.getNodeType() == Node.ELEMENT_NODE) {
                        Element naame = (Element) n;
                        System.out.println("Employee" + id + ":" + naame.getTagName() + "=" +naame.getTextContent());
                    }
                }
            }
        }
    } catch (ParserConfigurationException e) {
        e.printStackTrace();
    } catch (SAXException e) {
        e.printStackTrace();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

}

1
shiva karnati