English 中文(简体)
Java 的字符串
原标题:Strings in java
  • 时间:2012-05-23 10:10:18
  •  标签:
  • java
  • string

i 试图创建一条字符串, 我希望有此表单 :

      <atom:link rel="name" type="html" href="http://www/data/name/1"/>

我在尝试这个:

     String astring = "<atom:link rel="+"name"+" "+"type="+"html"+" "+"href="+"http://www/data/name/"+id+"/>"

我拿着这个:

&lt;atom:link rel=name type=html href=http://www/data/name/1/&gt;

有什么想法吗?

最佳回答

双引号必须在字符串字句中反弹,以逃避:

String astring = "<atom:link rel="name" type="html" href="http://www/data/name/1"/>";
问题回答

尝试此 :

String astring = "<atom:link rel="+""name""+" "+"type="+""html""+" "+"href="+""http://www/data/name/"+id+""/>"

您需要在字符串中逃避 字符, 以反斜线( 字符) 在它前面做 :

无意冒犯, 但似乎你一直不怎么注意或试图理解根本问题, 也就是“ 逃避能力” 。 由于这是一个数据格式和编程的软性概念, 此处是“ href=” http:// en.wikipedia. org/ wiki/ Escape_ character” rel=“ nofollow” 页面, 是关于逃逸字符 < / a> 在 wikipedia 中的 。

然后,你应该调查你flful 在(1) Java string 和(2) xml 的背景下逃跑的概念。

What is exactly your problem? missing double quote? or escaped < > ?

对于缺失的双引号, 它只是因为您没有在字符串中设置任何双引号。 请做类似 < code> “ rel=" name" 的操作 。

对于后一个字符串, 我敢打赌, 您已经将字符串作为文本节点, 并有一个 XML 写入数据 。 因为在 XML 中, < code_ lt; & gt; 必须避开以正确展示字符串 。 您不应该期望在特定的 xml 节点中给定一个普通字符串来创建 XML 结构 。 使用您的 XML API 来正确构建 XML 结构的这个部分 。





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签