xml - 如何创建/运行XML文件

时间:2011-02-07 11:41:11

标签: xml

有人可以告诉我运行.xml文件需要什么吗?我可以在记事本中创建它吗? 并使用.xml扩展名保存,然后在Windows中双击该文件或执行此操作 我需要一个特殊的编辑器?

我有一个java应用程序,想要使用需要的Jave Web Start技术 我的.jar文件中的JNLP文件。

由于

3 个答案:

答案 0 :(得分:0)

当然你可以运行一个xml文件。确切地说:你可以运行一个xsl文件,这是一种带有xslt代码的特殊xml文件,但也可以像其他源代码一样运行纯文本。运行xslt脚本的解释器是您的浏览器 所以你需要两个文件:

一个。一个xml文件,包含要使用的脚本的数据和信息(将其命名为“test.xml”):

<?xml version="1.0" encoding="utf-8"?>  
<?xml-stylesheet type="text/xsl" href="test.xsl"?>  
<root>data</root>

湾包含脚本的xsl文件(将其命名为“test.xsl”):

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">  
    <html>
      <head>
        <title>Show XML</title>
      <head>
      <body>
        <xsl:value-of select="."/>
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

如果您的操作系统不知道在打开xml文件时使用哪个程序,请告诉他这是浏览器。 是的,你只需要任何编辑器,如记事本和任何浏览器,如firefox或ie。使用知道xml的人更方便,但记事本和ie已经是一个完整的开发环境 - standanlone,不需要任何java,所以我不知道你为什么提到它。

答案 1 :(得分:0)

这是使用C#

简单插入xml文件

{ 首先调用方法..............

   public void InvokeKey()
    {
        DSXml.ReadXml(@"c:\users\general\documents\visual studio 2010\Projects\xml_practice\xml_practice\todolist.xml");

        DataColumn[] ID = new DataColumn[1];

        ID[0] = DSXml.Tables[0].Columns[0];

        DSXml.Tables[0].PrimaryKey = ID;
    }

DataSet DsXml = new DataSet();         DataRow DrXML;

    string Date = Convert.ToString(System.DateTime.Now.ToString("d"));
    string Time = Convert.ToString(System.DateTime.Now.ToString("hh:mm:ss"));

    int ID;




    InvokeKey();
            DRXML = DSXml.Tables[0].Rows.Find(ID);

    DsXml.WriteXml(@"path");

        DrXML = DsXml.Tables[0].NewRow();

        DrXML[0] = ID;
        DrXML[0] = ID;
        DrXML[0] = ID;
        DrXML[0] = ID;
        DrXML[0] = ID;
        DrXML[0] = ID;

        DsXml.Tables[0].Rows.Add(DrXML);

        DsXml.WriteXml(@"path");

dt = REport.LoadSubjects();

        Excel.Application xlApp = new Excel.Application(); // open app
        xlApp.Visible = true;

        Excel.Workbook xlWorkBook = xlApp.Workbooks.Add(1); //open workbook
        Excel.Worksheet xlSheet = (Excel.Worksheet)xlWorkBook.Worksheets[1]; //open worksheet


        xlSheet.Cells.Rows.Columns.AutoFit(); 

        string strTempVariable = dt.Rows[0][0].ToString();   //temporary variable

        xlSheet.Cells[4, 1] = dt.Rows[0][0].ToString();

        xlSheet.Cells[1, 1] = "Employees group header";

        for (int count = 0; count < dt.Columns.Count;count++ )
        {
            xlSheet.Cells[3, count+1] = dt.Columns[count].ColumnName;// prints column names
        }
        int group=0;
        int total=0;
        int intRow = 5;//manages xlsheet

        for (int counter = 0; counter < dt.Rows.Count;counter++ )
        {
            if (strTempVariable == dt.Rows[counter]["City"].ToString())
            {
                xlSheet.Cells[intRow, 2] = dt.Rows[counter][1];
                xlSheet.Cells[intRow, 3] = dt.Rows[counter][2];
                xlSheet.Cells[intRow, 4] = dt.Rows[counter][3];
                xlSheet.Cells[intRow, 5] = dt.Rows[counter][4];
                group++;
                total++;
                intRow++;
            }
            else
            {
                xlSheet.Cells[intRow, 4] = "group name  " + strTempVariable + "  " + group.ToString();

                strTempVariable = dt.Rows[counter][0].ToString();
                intRow++;
                xlSheet.Cells[intRow, 1] = strTempVariable;
                intRow++;
                counter--;
                group = 0;
            }

        }
          intRow++;
       xlSheet.Cells[intRow, 4] = "group name  " + strTempVariable + "  "+group.ToString();  
             intRow++;
        xlSheet.Cells[intRow, 4] = "GrandTotal  " + "  "+total.ToString();



        xlWorkBook.Close(true, "GROUP REPORT", 0);//The name of the worksheet

        xlApp.Quit();

       // return "Report Successfully";

    }

public string ReportTimeTable()         {

        DataTier.clsDataAccess Data = new DataTier.clsDataAccess();

        int intCount = 0;
        int intCount2 = 5;


        Data.sqlcon.Close();
        Data.sqlcon.Open();


        Data.sqlAdpter = new SqlDataAdapter("SELECT * FROM USERS ORDER BY password",Data.sqlcon);
        DataTable ReportDt = new DataTable("Report");

        Data.sqlAdpter.Fill(ReportDt);
        Data.sqlcon.Close();

       string strMsg = "";

        Excel.Application xlApp = new Excel.Application();
        xlApp.Visible = true;



        Excel.Workbook xlWorkbook = xlApp.Workbooks.Add(1);
        Excel.Worksheet xlWorksheet = (Excel.Worksheet)xlWorkbook.Sheets[1];


        // Setting cell values
        ((Excel.Range)xlWorksheet.Cells[1, "A"]).Value2 = "Report - USERS "; //main heading

        ((Excel.Range)xlWorksheet.Cells[3, "A"]).Value2 = "USERNAME"; //field headings
        ((Excel.Range)xlWorksheet.Cells[3, "B"]).Value2 = "PASSWORD";
       // ((Excel.Range)xlWorksheet.Cells[3, "C"]).Value2 = "MARK";


        for (intCount = 0; intCount < ReportDt.Rows.Count; intCount++)
        {
            xlWorksheet.Cells[intCount2, "A"] = ReportDt.Rows[intCount][0];
            xlWorksheet.Cells[intCount2, "B"] = ReportDt.Rows[intCount][1];
           // xlWorksheet.Cells[intCount2, "C"] = ReportDt.Rows[intCount][2];


            intCount2++;
        }
        xlWorksheet.Cells.Columns.AutoFit();
        strMsg = "report successful";
        return strMsg;

答案 2 :(得分:-1)

您不需要特殊的编辑器,但在编辑时可以提供很多帮助。

您无法运行xml文件。但是你可以运行一个使用xml文件的程序。

要“运行”xml文件,您可能需要以下语句:

java -jar yourFile.jar packageOfMainMethod.ClassWithMainMethod yourXML.xml

但这取决于您尝试运行的程序。