| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Java XPath」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
(ページの作成:「http://www.atmarkit.co.jp/fxml/ddd/ddd001/ddd001-namespaces1.html XMLを返すurlからXMLデータを取得、解析し、Nodeのリストを作成する。 URLConne…」)
 
10行目: 10行目:
 
  NodeList result = (NodeList)xpath.evaluate("//*[local-name()='Parameter']/text()", in, XPathConstants.NODESET);
 
  NodeList result = (NodeList)xpath.evaluate("//*[local-name()='Parameter']/text()", in, XPathConstants.NODESET);
 
   
 
   
  for (int i=0; i<result.getLength(); i++) {
+
  for (int i=0; i&lt;result.getLength(); i++) {
 
     System.out.println(result.item(i).toString());
 
     System.out.println(result.item(i).toString());
 
  }
 
  }
30行目: 30行目:
 
  public class NameSpaceContextImpl implements NamespaceContext {
 
  public class NameSpaceContextImpl implements NamespaceContext {
 
   
 
   
     Map<String, String> map = new HashMap<String, String>();
+
     Map&lt;String, String&gt; map = new HashMap&lt;String, String&gt;();
 
      
 
      
 
     public NameSpaceContextImpl() {
 
     public NameSpaceContextImpl() {
51行目: 51行目:
 
         }
 
         }
 
          
 
          
         Set<Map.Entry<String, String>>set = map.entrySet();
+
         Set&lt;Map.Entry&lt;String, String&gt;&gt;set = map.entrySet();
         for (Map.Entry<String, String>item : set) {
+
         for (Map.Entry&lt;String, String&gt;item : set) {
 
             if (namespaceURI.equals(item.getValue())) {
 
             if (namespaceURI.equals(item.getValue())) {
 
                 return item.getKey();
 
                 return item.getKey();
62行目: 62行目:
 
     public Iterator getPrefixes(String namespaceURI) {
 
     public Iterator getPrefixes(String namespaceURI) {
 
          
 
          
         Set<String> prefixes = new HashSet<String>();
+
         Set&lt;String&gt; prefixes = new HashSet&lt;String&gt;();
 
          
 
          
         Set<Map.Entry<String, String>>set = map.entrySet();
+
         Set&lt;Map.Entry&lt;String, String&gt;&gt;set = map.entrySet();
         for (Map.Entry<String, String>item : set) {
+
         for (Map.Entry&lt;String, String&gt;item : set) {
 
             if (namespaceURI.equals(item.getValue())) {
 
             if (namespaceURI.equals(item.getValue())) {
 
                 prefixes.add(item.getKey());
 
                 prefixes.add(item.getKey());

2020年2月15日 (土) 08:03時点における版

http://www.atmarkit.co.jp/fxml/ddd/ddd001/ddd001-namespaces1.html XMLを返すurlからXMLデータを取得、解析し、Nodeのリストを作成する。

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

InputSource in = new InputSource(new InputStreamReader(conn.getInputStream()));
XPathFactory xfactory = XPathFactory.newInstance();
XPath xpath = xfactory.newXPath();

NodeList result = (NodeList)xpath.evaluate("//*[local-name()='Parameter']/text()", in, XPathConstants.NODESET);

for (int i=0; i<result.getLength(); i++) {
    System.out.println(result.item(i).toString());
}


package generate;

import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

import javax.xml.XMLConstants;
import javax.xml.namespace.NamespaceContext;

public class NameSpaceContextImpl implements NamespaceContext {

    Map<String, String> map = new HashMap<String, String>();
    
    public NameSpaceContextImpl() {
        setNamespaceURI(XMLConstants.DEFAULT_NS_PREFIX, XMLConstants.NULL_NS_URI);
        setNamespaceURI(XMLConstants.XML_NS_PREFIX, XMLConstants.XML_NS_URI);
        setNamespaceURI(XMLConstants.XMLNS_ATTRIBUTE, XMLConstants.XMLNS_ATTRIBUTE_NS_URI);
    }
    
    public void setNamespaceURI(String prefix, String uri) {
        map.put(prefix, uri);
    }
    
    public String getNamespaceURI(String prefix) {
        return map.get(prefix);
    }

    public String getPrefix(String namespaceURI) {
        if (namespaceURI == null) {
            throw new IllegalArgumentException();
        }
        
        Set<Map.Entry<String, String>>set = map.entrySet();
        for (Map.Entry<String, String>item : set) {
            if (namespaceURI.equals(item.getValue())) {
                return item.getKey();
            }
        }
        return XMLConstants.NULL_NS_URI;
    }

    public Iterator getPrefixes(String namespaceURI) {
        
        Set<String> prefixes = new HashSet<String>();
        
        Set<Map.Entry<String, String>>set = map.entrySet();
        for (Map.Entry<String, String>item : set) {
            if (namespaceURI.equals(item.getValue())) {
                prefixes.add(item.getKey());
            }
        }
        
        return Collections.unmodifiableCollection(prefixes).iterator();
    }

}