Tag: xml

如何阻止Eclipse尝试运行XML文件?

目前我主要使用Eclipse进行Android开发,并且为Ctrl-F11开发了良好的肌肉内存来运行我的应用程序。 问题是,如果我碰巧在编辑一个XML文件(如清单或布局),当我按下这个组合键时,Eclipse会做一些我觉得不可思议的事情……它试图“运行”我的XML文件,创build一个错误的输出文件(称为layout.out.xml ),然后我必须删除,添加一个无用的XML启动configuration到我的历史,通常是我的屁股疼痛。 这没什么大不了的,但这是一个持续的烦恼。 有谁知道如何禁用Eclipse中的“运行”的XML? 我试图find一个configuration项目,但Eclipse的选项是这样一个兔子洞,我没有任何运气在那里我自己。 谢谢!

我怎样才能开始制作一个C#RSS阅读器?

我一直想做一段时间的RSS阅读器(只是为了好玩),但是我从没有丝毫的想法,从哪里开始。 我不了解RSS的任何内容。 是否有任何关于RSS的好教程,以及如何在应用程序中实现它(而不是如何制作RSS阅读器的教程,这太容易了)。

如何在ASP.NET中返回XML?

我遇到过许多在ASP.NET中返回XML的任务的一半解决scheme。 不过,我不想盲目地复制和粘贴大部分时间工作的代码, 我想要正确的代码,我想知道为什么它是正确的。 我要批评; 我需要信息; 我需要知识; 我想要了解。 下面是代码段,按照越来越复杂的顺序,代表我已经看到的一些部分解决scheme,包括每个引起的一些进一步的问题,以及我想在这里回答的问题。 一个彻底的答案必须解释为什么我们必须拥有或不能拥有以下任何东西,否则解释为什么它是不相关的。 Response.Clear(); Response.ContentType =“text / xml”; Response.ContentEncoding = Encoding.UTF8; Response.ContentEncoding = Encoding.UTF16; Response.ContentType =“text / xml; charset = utf-8”; Response.ContentType =“text / xml; charset = utf-16”; 到Response.End() 用正面文件内脏的aspx来撕掉 使用ashx文件 最后,想象一下你需要编写一个像这样的帮助函数的内容: ///<summary>Use this call inside your (Page_Xxx) method to write the ///xml to the web client. </summary> ///<remarks>See […]

在SQL Server XML数据types上使用LIKE语句

如果你有一个varchar字段,你可以很容易地做SELECT * FROM TABLE WHERE ColumnA LIKE '%Test%'来查看该列是否包含某个string。 你怎么做的XMLtypes? 我有以下内容,只返回具有“文本”节点,但我需要在该节点内search的行 select * from WebPageContent where data.exist('/PageContent/Text') = 1

由DataContractSerializer创build的XML的格式

有没有一种简单的方法让DataContractSerializer吐出格式化的XML而不是一个长string? 我不想以任何方式更改标签或内容,只需要添加换行符和缩进来使XML更具可读性。 <tagA> <tagB>This is</tagB> <tagC>Much</tagC> <tagD> <tagE>easier to read</tagE> </tagD> </tagA> <tagA><tagB>This is</tagB><tagC>Much</tagC><tagD><tagE>harder to read</tagE></tagD></tagA>

XPath:从子节点获取父节点

我需要得到父节点的子节点“标题50” 目前我只使用 //*[title="50"] 我怎么能得到它的父母? 结果应该是store节点。 <?xml version="1.0" encoding="utf-8"?> <d:data xmlns:d="defiant-namespace" d:mi="23"> <store d:mi="22"> <book price="12.99" d:price="Number" d:mi="4"> <title d:constr="String" d:mi="1">Sword of Honour</title> <category d:constr="String" d:mi="2">fiction</category> <author d:constr="String" d:mi="3">Evelyn Waugh</author> </book> <book price="8.99" d:price="Number" d:mi="9"> <title d:constr="String" d:mi="5">Moby Dick</title> <category d:constr="String" d:mi="6">fiction</category> <author d:constr="String" d:mi="7">Herman Melville</author> <isbn d:constr="String" d:mi="8">0-553-21311-3</isbn> </book> <book price="8.95" d:price="Number" d:mi="13"> <title d:constr="String" […]

Python代码从string中删除HTML标签

我有这样的文字: text = """<div> <h1>Title</h1> <p>A long text…….. </p> <a href=""> a link </a> </div>""" 使用纯Python,没有外部模块我想要这样: >>> print remove_tags(text) Title A long text….. a link 我知道我可以使用lxml.html.fromstring(text).text_content()来做到这一点,但我需要在纯Python中使用内置或std库来实现2.6+ 我怎样才能做到这一点?

Ruby XML到JSON转换器?

在Ruby中是否有一个将XML转换为JSON的库?

为标签LinearLayoutfind意外的命名空间前缀“xmlns”

我在下面的XML文件中有一个错误。 “为标签LinearLayoutfind意外的命名空间前缀”xmlns“” 。 我也尝试了其他类似问题中提供的解决scheme,但它并不适用于我。 在使用LinearLayout 3行中发生同样的错误。 <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/background" > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical" > <TextView android:id="@+id/menu_top_text" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/name_version" android:textColor="@color/black" android:textSize="20sp" /> <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal" > </LinearLayout> <!– A horizontal line –> <FrameLayout android:layout_width="fill_parent" android:layout_height="30px" > </FrameLayout> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="wrap_content" android:gravity="center_horizontal" android:orientation="vertical" > <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" […]

平铺drawable有时延伸

我有一个ListView的项目有平铺背景。 要做到这一点,我使用以下可绘制的XML: <bitmap xmlns:android="http://schemas.android.com/apk/res/android" android:src="@drawable/tile" android:tileMode="repeat" /> 通常,这是有效的。 然而,有时候,src drawable不是平铺的,而是延伸到填充整个列表项的。 (我有几个不同的瓷砖,我把它们混合在一个ListView中,如果有拉伸而不是平铺的话,那么它就不会一次完成,因为这是值得的。 我也尝试将android:dither="true"到该xml中,因为我在某处阅读,没有它可能会有错误。 这并没有改变任何东西。 有没有人有同样的问题? 你怎么修好它的?