0

常にこのエラーが発生する理由.既存のxmlファイルにデータを追加しようとしています.ここで回答を読み、提案されたことを試しました. しかし、まだ成功していません。このエラーは、最上位のルート要素が 1 回しか来ないことを意味します。しかし、なぜこのエラーが発生するのかわかりません。

これが私のxmlファイルの構造になります。

<root>
  <ip>ip1</ip>
  <ip>ip2</ip>
</root>

そして、ipタグは増加し続けます.Hereは、既存のファイルにデータを読み取って追加しようとしている方法です.

private void UpdateExistingXML(String ip,File file) 
{
    try
    {
        DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();
        DocumentBuilder docBuilder = docFactory.newDocumentBuilder();
        Document doc = docBuilder.parse(file.toURI().toString());   // <--error here

        // Get the root element
        Node root= doc.getFirstChild(); 
        org.w3c.dom.Element newip=doc.createElement("ip");
        newip.appendChild(doc.createTextNode(ip));
        root.appendChild(newip);
        TransformerFactory transformerFactory = TransformerFactory.newInstance();
        Transformer transformer = transformerFactory.newTransformer();
        DOMSource source = new DOMSource(doc);
        StreamResult result = new StreamResult(file);
        transformer.transform(source, result);
    }
    catch (ParserConfigurationException pce)
    {
            pce.printStackTrace();
    }
    catch (TransformerException tfe) 
    {
            tfe.printStackTrace();
    }
    catch (IOException ioe) 
    {
            ioe.printStackTrace();
    }
    catch (SAXException sae) 
    {
            sae.printStackTrace();
    }
    catch (Exception e)
    {
        Log.e("eeee",e.getMessage());
    }
}

これは、ルート要素が1回だけ挿入されることを示すxmlファイルを初めて作成する方法です。

private void CreateNewXML(String ip) throws FileNotFoundException
{
    FileOutputStream fos=null ;

    Log.i("Fileeee","new");
    try
    {
        fos = openFileOutput("clients.xml", Context.MODE_PRIVATE);
    }
    catch(FileNotFoundException e)
    {
            Log.e("FileNotFoundException", "can't create FileOutputStream");
    }
    XmlSerializer serializer = Xml.newSerializer();
    try {
                    serializer.setOutput(fos, "UTF-8");
                    serializer.startDocument(null, Boolean.valueOf(true));
                    serializer.setFeature("http://xmlpull.org/v1/doc/features.html#indent-output", true);
                    serializer.startTag(null, "root");

                            serializer.startTag(null, "ip");
                            serializer.text(ip);
                            serializer.endTag(null, "ip");

                    serializer.endTag(null, "root");
                    serializer.endDocument();
                    serializer.flush();
                    fos.close();

            } 
    catch (Exception e) 
    {
                    Log.e("Exceptionhaiiiiiiiiiii",e.getMessage());
    }
}
4

1 に答える 1

0

This looks like your problem:

Document doc = docBuilder.parse(file.toURI().toString());   // <--error here

You are trying to parse the file path, rather than the file. You need to create an inputStream and parse that.

If you are getting the file from a web server it might look like this:

URL url = new URL(DATAURL);
            conn = (HttpURLConnection) url.openConnection();
            conn.setReadTimeout(TIMEOUT);
            conn.setConnectTimeout(CONNECT_TIMEOUT);
            conn.setRequestMethod("GET");
            conn.setDoInput(true);
            conn.connect();

DocumentBuilderFactory builderFactory =
            DocumentBuilderFactory.newInstance();
        DocumentBuilder builder = null;

        try
        {

            builder = builderFactory.newDocumentBuilder();
        }
        catch (ParserConfigurationException e)
        {
            Log.e(TAG, "Parse Configuration issue", e);
            throw new ServiceException("Service Exception Error");
        }
        catch (IllegalAccessError e)
        {
            Log.e(TAG, "Illegal Accessor Error", e);
            throw new ServiceException("Service Exception Error");
        }

        try
        {
            // parse input from server
            Document document = builder.parse(conn.getInputStream());
            Element xmlElement = document.getDocumentElement();
            NodeList recordNodes = xmlElement.getChildNodes();

            // assign parsed data to listItem object
            for (int i = 0; i < recordNodes.getLength(); i++)
            {

                Node record = recordNodes.item(i);
                NodeList recordDetails = record.getChildNodes();
                ListData listItem = new ListData();

                for (int ii = 0; ii < recordDetails.getLength(); ii++)
                {
                    Node detailItem = recordDetails.item(ii);
                    String detailType = detailItem.getNodeName();
                    String detailValue = detailItem.getTextContent();
.....
于 2012-07-27T20:25:20.897 に答える