c# - 使用 java xml api 将 xml 文档保存到文件

标签 c# java xml

我陷入了这个级别(代码片段中 Java 和 C# 的不可编译混合):

...
//then write results out to a file, which can then be used by XPF Application
         Document photosDoc = new Document();
         Element photosElement = new Element("photos", from pi in photos
                 select new XElement("photo",
                     new XElement("url", pi.PhotoUrl(false)),
                     new XElement("title", pi.Title))
             );
         photosDoc.Add(photosElement);
         photosDoc.Save("C:\\photos.xml");

我不知道如何转换这部分代码以将结果写入文件。我想将结果保存到 xml 文件中。

有什么帮助吗?

<小时/>

我在尝试将此 C# 代码转换为 java 代码时偶然发现了这个问题:

using System;
using System.Collections.Generic;
using System.Text;
System.Query;
using System.Xml.XLinq;
using System.Data.DLinq;
public class RSSImageFeed 
{
    private const string FLICKR_API_KEY = "c705bfbf75e8d40f584c8a946cf0834c";
    private const string MOST_RECENT = "http://www.flickr.com/services/rest/?method=flickr.photos.getRecent&api_key=" + FLICKR_API_KEY;
    private const string INTERESTING = "http://www.flickr.com/services/rest/?method=flickr.interestingness.getList&api_key=" + FLICKR_API_KEY;
    private const string ENTER_TAG = "http://www.flickr.com/services/rest/?method=flickr.photos.search&api_key=" + FLICKR_API_KEY + "&tags=";
    private string url = MOST_RECENT;
    private int pageIndex = 0;
    private int columns = 5;
    private int rows = 2;
    private bool prevAvail = false;
    private bool nextAvail = false;


    public RSSImageFeed()
    {

    }

    public bool IsPrevAvail
    {
        get { return prevAvail; }
    }
    public bool IsNextAvail
    {
        get { return nextAvail; }
    }

    public int PageIndex
    {
        set { pageIndex = value; }
        get { return pageIndex; }
    }



    public bool LoadPictures(string searchType, string searchWord)
    {


        switch (searchType)
        {
            case "Most Recent":
                this.url=MOST_RECENT;
                break;
            case "Interesting":
                this.url=INTERESTING;
                break;
            case "By Search Word":
                this.url = ENTER_TAG + searchWord;
                break;
            default :
                this.url = MOST_RECENT;
                break;
        }

        try
        {
            var xraw = XElement.Load(url);
            var xroot = XElement.Parse(xraw.Xml);
            //select the RSS data from Flickr, and use standard LINQ projection
            //to store it within a new PhotoInfo which is an object of my own making
            var photos = (from photo in xroot.Element("photos").Elements("photo")
                select new PhotoInfo
                { 
                    Id = (string)photo.Attribute("id"),
                    Owner = (string)photo.Attribute("owner"),
                    Title = (string)photo.Attribute("title"),
                    Secret = (string)photo.Attribute("secret"),
                    Server = (string)photo.Attribute("server"),
                    Farm = (string)photo.Attribute("Farm"),
                }).Skip(pageIndex * columns * rows).Take(columns * rows);

            //set the allowable next/prev states
            int count = photos.Count();

            if (pageIndex == 0)
            {
                this.prevAvail = false;
                this.nextAvail = true;
            }
            else
            {
                this.prevAvail = true;
            }
            //see if there are less photos than sum(Columns * Rows) if there are less
            //cant allow next operation
            if (count < columns * rows)
            {
                this.nextAvail = false;
            }
            //then write results out to a file, which can then be used by XPF Application
            XDocument photosDoc = new XDocument();
            XElement photosElement = new XElement("photos", from pi in photos
                    select new XElement("photo",
                        new XElement("url", pi.PhotoUrl(false)),
                        new XElement("title", pi.Title))
                );
            photosDoc.Add(photosElement);
            photosDoc.Save(@"c:\photos.xml");
            return true;

        }
        catch (Exception ex)
        {
            return false;
        }
    }
}

这是我将上面的 C# 代码转换为 java 代码的尝试:

import java.net.URL;

import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;

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



public class FlickrFeed {

private  String FLICKR_API_KEY = "204e5627ea6626101221a5c7b4b0dd3a";
private  String MOST_RECENT = "http://www.flickr.com/services/rest/?method=flickr.photos.getRecent&api_key=" + FLICKR_API_KEY;
private  String INTERESTING = "http://www.flickr.com/services/rest/?method=flickr.interestingness.getList&api_key=" + FLICKR_API_KEY;
private  String ENTER_TAG = "http://www.flickr.com/services/rest/?method=flickr.photos.search&api_key=" + FLICKR_API_KEY + "&tags=";
private String url = MOST_RECENT;
private int pageIndex = 0;
private int columns = 5;
private int rows = 2;
private boolean prevAvail = false;
private boolean nextAvail = false;

public enum SearchType
{
    Most_Recent, Interesting, By_Search_Word
}

public FlickrFeed()
{

}
public boolean IsPrevAvail()
{
    return prevAvail; 
}
public boolean IsNextAvail()
{
     return nextAvail; 
}
public int PageIndex(int value)
{
     pageIndex = value; 
     return pageIndex; 
}
public boolean LoadPictures( String searchWord)
{
    SearchType searchType = SearchType.By_Search_Word;

    switch (searchType)
    {
        case Most_Recent:
            this.url=MOST_RECENT;
            break;
        case Interesting:
            this.url=INTERESTING;
            break;
        case By_Search_Word:
            this.url = ENTER_TAG + searchWord;
            break;
        default :
            this.url = MOST_RECENT;
            break;
    }


     try
     {

        // var xraw = XElement.Load(url);
        // var xroot = XElement.Parse(xraw.Xml);

         DocumentBuilder builder = DocumentBuilderFactory.newInstance().newDocumentBuilder();
         URL Url = new URL(url);
         Document doc = builder.parse(Url.openStream());
         NodeList nodes = null;
         Element element = null;

         //select the RSS data from Flickr, and store it within a new PhotoInfo which is an object of my own making
         nodes = doc.getElementsByTagName("photo");
         for (int i = 0; i < nodes.getLength(); i++) {
             element = (Element) nodes.item(i);
        String Id =  (String)element.getAttribute("id");
             System.out.println("id:="+Id);
        String Owner=(String)element.getAttribute("owner");
             System.out.println("Owner:="+Owner);
        String Title =   (String)element.getAttribute("title");
             System.out.println("Title:="+Title);
        String  Secret=  (String)element.getAttribute("secret");
             System.out.println("Secret:="+Secret);
        String  Server=  (String)element.getAttribute("server");
             System.out.println("Server:="+Server);
        String  Farm=    (String)element.getAttribute("farm");
             System.out.println("Farm:="+Farm);
             System.out.println("ok: " + nodes.getLength());


         }
         /* photos = (from photo in xroot.Element("photos").Elements("photo")
             select new PhotoInfo
             { 
                 Id = (string)photo.Attribute("id"),
                 Owner = (string)photo.Attribute("owner"),
                 Title = (string)photo.Attribute("title"),
                 Secret = (string)photo.Attribute("secret"),
                 Server = (string)photo.Attribute("server"),
                 Farm = (string)photo.Attribute("Farm"),
             }).Skip(pageIndex * columns * rows).Take(columns * rows);*/

         //set the allowable next/prev states

        // int count = photos.Count();
         int count = nodes.getLength();
         if (pageIndex == 0)
         {
             this.prevAvail = false;
             this.nextAvail = true;
         }
         else
         {
             this.prevAvail = true;

         //see if there are less photos than sum(Columns * Rows) if there are less
         //cant allow next operation
         if (count < columns * rows)
         {
             this.nextAvail = false;
         }
         //then write results out to a file, which can then be used by XPF Application
         Document photosDoc = new Document();
         Element photosElement = new Element("photos", from pi in photos
                 select new XElement("photo",
                     new XElement("url", pi.PhotoUrl(false)),
                     new XElement("title", pi.Title))
             );
         photosDoc.Add(photosElement);
         photosDoc.Save("C:\\photos.xml");
         return true;

     }
     catch (Exception ex)
     {
         return false;
     }
     /**
         * Methode permettant de retourner ce que contient un noeud
         * @param _node le noeud principal
         * @param _path suite des noms des noeud sans espace separés par des "|"
         * @return un string contenant la valeur du noeud voulu
         */


}
public String readNode(Node _node, String _path) {

    String[] paths = _path.split("\\|");
    Node node = null;

    if (paths != null && paths.length > 0) {
        node = _node;

        for (int i = 0; i < paths.length; i++) {
            node = getChildByName(node, paths[i].trim());
        }
    }

    if (node != null) {
        return node.getTextContent();
    } else {
        return "";
    }
}
/**
 * renvoye le nom d'un noeud fils a partir de son nom
 * @param _node noeud pricipal
 * @param _name nom du noeud fils
 * @return le noeud fils
 */
public Node getChildByName(Node _node, String _name) {
    if (_node == null) {
        return null;
    }
    NodeList listChild = _node.getChildNodes();

    if (listChild != null) {
        for (int i = 0; i < listChild.getLength(); i++) {
            Node child = listChild.item(i);
            if (child != null) {
                if ((child.getNodeName() != null && (_name.equals(child.getNodeName()))) || (child.getLocalName() != null && (_name.equals(child.getLocalName())))) {
                    return child;
                }
            }
        }
    }
    return null;
}
public static void main(String[] args) {
    FlickrFeed f= new FlickrFeed();
    f.LoadPictures("upcoming:event");

}

}

最佳答案

我从来没有见过C#->Java转换工具。语法很简单,但框架却非常不同。即使有工具,我也会强烈建议不要使用。这不是捷径,您最终得到的是不可读的代码,并且没有利用目标语言。我认为重写代码将是最好的方案。

关于c# - 使用 java xml api 将 xml 文档保存到文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9178357/

相关文章:

java - 反向显示数组列表

c# - 失败,因为相同类型的另一个实体已经具有相同的主键值

c# - WPF C# - 更改菜单背景的画笔

java - 在 Linux 机器上每 5 分钟使用 java 程序间歇更新数据库

c - libxml2 中奇怪的 XPath 行为

.net - 使用 XmlDocuments、XSLT 或 Linq 解析 Xml、XPath 哪个更有效?

android - 错误夸大设计支持库中的任何内容

c# - 如何优化众所周知的耗时流程的工作队列

c# - 数据库的位置?

java - 使用依赖注入(inject)作为单例的替代方案