创建具有字符串格式的 Java 字符串变量
Create a Java String variable with string formatting
我需要创建一个字符串变量。那应该像下面的变量。
String search = "xmlns="http://tempuri.org/" />";
但我无法将 xmlns="http://tempuri.org/" /> 直接分配给字符串变量,因为 tempuri.org/" />"; 自动获得评论。
我需要一个格式这个字符串,最终变量应该是这样的
search = xmlns="http://tempuri.org/" /> ;
我怎样才能做到这一点?
您必须转义特殊字符,即将 " 替换为 \"
String search = "xmlns=\"http://tempuri.org/\" />";
您需要使用转义字符:
String search = "xmlns=\"http://tempuri.org/\" />";
来自评论的版本:
String search = "xmlns=\"tempuri.org/\"; /></soap:Body>";
我需要创建一个字符串变量。那应该像下面的变量。
String search = "xmlns="http://tempuri.org/" />";
但我无法将 xmlns="http://tempuri.org/" /> 直接分配给字符串变量,因为 tempuri.org/" />"; 自动获得评论。
我需要一个格式这个字符串,最终变量应该是这样的
search = xmlns="http://tempuri.org/" /> ;
我怎样才能做到这一点?
您必须转义特殊字符,即将 " 替换为 \"
String search = "xmlns=\"http://tempuri.org/\" />";
您需要使用转义字符:
String search = "xmlns=\"http://tempuri.org/\" />";
来自评论的版本:
String search = "xmlns=\"tempuri.org/\"; /></soap:Body>";