0

Javaを使用してxmlツリーを作成しようとしています。
私はJAVAで完全に新鮮です。
私はこれのためのいくつかのコードを見つけています。

package ep;

import java.io.File;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerException;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.dom.DOMSource;
import javax.xml.transform.stream.StreamResult;

import org.w3c.dom.Attr;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;

public class Tclass {

    public static void main(String argv[]) {

      try {

        DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder docBuilder = docFactory.newDocumentBuilder();

        // root elements
        Document doc = docBuilder.newDocument();
        Element rootElement = doc.createElement("products");
        doc.appendChild(rootElement);
        for(int x = 1; x < 20; x = x+1) {
        // staff elements
        Element staff = doc.createElement("product_id");
        rootElement.appendChild(staff);

        // set attribute to staff element
        Attr attr = doc.createAttribute("value");

        // shorten way
        staff.setAttribute("value", x);
        }
        // write the content into xml file
        TransformerFactory transformerFactory = TransformerFactory.newInstance();
        Transformer transformer = transformerFactory.newTransformer();
        DOMSource source = new DOMSource(doc);
        StreamResult result = new StreamResult(new File("file.xml"));

        // Output to console for testing
        // StreamResult result = new StreamResult(System.out);

        transformer.transform(source, result);

        System.out.println("File saved!");

      } catch (ParserConfigurationException pce) {
        pce.printStackTrace();
      } catch (TransformerException tfe) {
        tfe.printStackTrace();
      }
    }
}

その仕事は完璧です。
しかし、私はそれらにforループを使用して複数の要素を作成しようとしています.40行目にエラーが返されます
The method setAttribute(String, String) in the type Element is not applicable for the arguments (String, int)
.私は何をしていますか?
助けてください。
ありがとう...

4

5 に答える 5

4

あなたがするとき:

staff.setAttribute("value", x);

置き換え:

staff.setAttribute("value", ""+x);
于 2013-05-27T09:30:12.547 に答える
4

intを期待している間に、あなたは通過していStringます。

 staff.setAttribute("value", String.valueOf(x));
于 2013-05-27T09:32:21.110 に答える
2

Element#setAttribute(name,value)、ここではこの値は単純stringで、設定されているため解析されません。そのため、すべてのマークアップ (エンティティ参照として認識される構文など) は、リテラル テキストとして扱われます。

したがってString、他のタイプの代わりに値として使用してください。intしたがって、値を文字列に変換します。

staff.setAttribute("value", Integer.toString(i)); // preferable as static 

また

staff.setAttribute("value", new Integer(i).toString());

また

staff.setAttribute("value", ""+i);

また

staff.setAttribute("value", String.valueOf(i)); // preferable as static
于 2013-05-27T09:32:05.410 に答える
1

交換する必要があります

staff.setAttribute("value", x);

staff.setAttribute("value", String.valueOf(x));
于 2013-05-27T09:31:09.797 に答える