Tag: xml

防止将引用的程序集PDB和XML文件复制到输出

我有一个Visual Studio 2008 C#/ .net 3.5项目与后构build任务ZIP内容。 不过,我发现我也得到了我的输出目录(和ZIP)中的引用程序集的.pdb(debugging)和.xml(文档)文件。 例如,如果MyProject.csproj引用了YourAssembly.dll,并且在与DLL相同的目录中有YourAssembly.xml和YourAssembly.pdb文件,它们将显示在我的输出目录(和ZIP)中。 我可以排除* .pdb压缩时,但我不能blanket排除* .xml文件,因为我有部署文件具有相同的扩展名。 有没有办法阻止项目复制引用程序集的PDB和XML文件?

从.XSD文件生成Java类…?

我有一个巨大的QuickBooks SDK .XSD模式文件,它定义了我可以从QuickBooks发送/接收的XML请求/响应。 我希望能够从这些.XSD文件中轻松生成Java类,然后我可以使用这些文件将XML编组为Java对象,将Java对象编码为XML。 有一个简单的方法来做到这一点…? 理想情况下,运行时不需要任何基础Java发行版以外的库。 但我很灵活

什么时候比XML更喜欢JSON?

我的要求是显示从数据库检索传播的一组值。 我正在使用jquery。

Android XML布局参数不能按预期的方式运行

我有3个问题: imageView(白色瓷砖)比gridView中的其他瓷砖显得大得多(这很奇怪,因为它只设置为5dp x 5dp) 在我的editText上设置android:layout_alignParentRight =“true”,textView和imageView似乎不会将图像移动到右侧 android:layout_below =“@ id / sqwhite”似乎不把我的editText放在我的textView下 (基本上来说:我需要在右下angular正确设置这些尺寸,但是我所用的参数都没有任何影响。) 有任何想法吗? <?xml version="1.0" encoding="utf-8"?> <com.example.project.DragLayer xmlns:android="http://schemas.android.com/apk/res/android" xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher" android:id="@+id/drag_layer" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="@android:color/black" > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="vertical" > <LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" android:weightSum="1.0" > <GridView android:id="@+id/image_grid_view" android:layout_width="wrap_content" android:layout_height="fill_parent" android:layout_weight="0.8" android:background="@color/grid_background" android:gravity="center" android:horizontalSpacing="2dip" android:numColumns="@integer/num_columns" android:stretchMode="columnWidth" android:verticalSpacing="2dip" /> <RelativeLayout android:id="@+id/bottom_part" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_centerHorizontal="true" android:layout_weight="0.2" android:background="@android:color/black" […]

XSL-FO:强制换行表项

当我将我的modspecs发布为pdf(XSL-FO)时,我遇到了一个问题。 我的表格有问题,一个单元格的内容将溢出到下一个列。 如何在文本上强制中断以便创build新行? 我无法手动插入零空格字符,因为表项是以编程方式input的。 我正在寻找一个简单的解决scheme,我可以简单地添加到docbook_pdf.xsl(无论是作为xsl:param或xsl:属性) 编辑:这是我目前在哪里: <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0" xmlns:fo="http://www.w3.org/1999/XSL/Format"> <xsl:import href="urn:docbkx:stylesheet"/> …(the beginning of my stylesheet for pdf generation, eg header and footer content stuff) <xsl:template match="text()"> <xsl:call-template name="intersperse-with-zero-spaces"> <xsl:with-param name="str" select="."/> </xsl:call-template> </xsl:template> <xsl:template name="intersperse-with-zero-spaces"> <xsl:param name="str"/> <xsl:variable name="spacechars">             ​ </xsl:variable> <xsl:if test="string-length($str) &gt; 0"> <xsl:variable name="c1" select="substring($str, 1, 1)"/> <xsl:variable […]

XSLT:一种简单的方法来合并XML文件

我有两个XML文件。 我需要将它们合并到两个元素“myid”匹配的位置。 请看看这些示例文件… File1.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <data> <title>Title1</title> <description>Description1</description> <myid>1</myid> </data> <data> <title>Title2</title> <description>Description2</description> <myid>2</myid> </data> </catalog> File2.xml: <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <data> <author>Author1</author> <date>12/34/5678</date> <myid>1</myid> </data> <data> <author>Author2</author> <date>87/65/4321</date> <myid>2</myid> </data> </catalog> 生成的文件如下所示: <?xml version="1.0" encoding="ISO-8859-1"?> <catalog> <data> <title>Title1</title> <description>Description1</description> <myid>1</myid> <author>Author1</author> <date>12/34/5678</date> </data> <data> <title>Title2</title> <description>Description2</description> <myid>2</myid> <author>Author2</author> <date>87/65/4321</date> </data> </catalog>

iPhone上的NSXMLParser,我如何使用它给一个XML文件(newb在这里:\)

嘿家伙,想知道我如何使用NSXML分析器。 所以让我们说给我有一个简单的XML文件像1/1/1000 14:15:16元素 我怎样才能使用NSXMLParser来parsingXML文件(它在本地btw,桌面上),检查每个元素,并将它们中的每一个存储在数组中,以便以后显示/使用? 我正在通过一些关于它的文档,我绝对不知道如何使用parsing器我知道有3种方法(或更多,请纠正我,如果我错了),可以被重写 – ..等didStartElement – .. etcEndElement – .. etc foundCharacters

名称中不能包含hex值“0x3A”的“:”字符

我有一个包含它的元素的XML文件 <ab:test>Str</ab:test> 当我尝试使用代码访问它时: XElement tempElement = doc.Descendants(XName.Get("ab:test")).FirstOrDefault(); 这给了我这个错误: System.Web.Services.Protocols.SoapException:服务器无法处理请求。 —> System.Xml.XmlException:名称中不能包含“:”字符(hex值0x3A)。 我应该如何访问它?

XPath中.//和// *有什么区别?

当通过Firebugfind相对的XPath时:它会创build类似的 .//*[@id='Passwd'] ———如果我们在开始的时候不使用点,它表示什么? 只需在Xpath中添加//* – 它突出显示了各种页面元素———-它是什么意思? 以下是Gmail密码字段的XPath。 *意义是什么? .//*[@id='Passwd'] //child::input[@type='password']

InflateException:二进制XML文件行#1:由于OutOfMemoryError引起的类错误

这是我的代码: input.xml (布局文件夹) <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" android:background="@drawable/background_main" > <ImageView android:id="@+id/logo_image" android:background="@drawable/background_green" android:src="@drawable/titleimage" android:layout_width="match_parent" android:layout_height="50dp" /> <ScrollView android:id="@+id/scroller" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@id/logo_image" android:layout_marginTop="10dp" > <TableLayout android:layout_width="wrap_content" android:layout_height="wrap_content" android:stretchColumns="*" > <TableRow android:id="@+id/device_type_row" android:layout_width="fill_parent" android:layout_height="wrap_content" android:paddingTop="5dp" android:paddingBottom="5dp" android:layout_marginRight="5dp" > <RadioButton android:id="@+id/device_type_radio" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textAppearance="?android:attr/textAppearanceSmall" android:text="@string/device_type" /> <RadioGroup android:id="@+id/device_type_radio_selection" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal"> <RadioButton android:id="@+id/radioIos" android:layout_width="wrap_content" android:layout_height = […]