xml 文件怎么编辑??

来源:百度知道 编辑:UC知道 时间:2024/05/27 23:54:43
不是看到代码

而是应该如何看到 表格???
用什么工具???
drippy说的是代码啊,这个找个记事本不就打开看了吗??

我问了是怎么以表格的形式来编辑 xml 文件???

谢先!!

推荐Altova XMLSpy 2006,功能非常强大,还有很多商业模板

要很用xsl格式化数据
如:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!--在这里引入您的XSL 文件-->
<?xml:tylesheet type="text/xsl" href="3.xsl"?>
<catalog>
<cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<year>1985</year>
</cd>
</catalog>
以下为:3.xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2><