码迷,mamicode.com
首页 > 编程语言 > 详细

Java中字符串的拼接和转义

时间:2018-09-10 13:39:09      阅读:456      评论:0      收藏:0      [点我收藏+]

标签:term   code   java   process   stat   demo   ado   test   pac   

Java中字符串的拼接和转义

package com.testToken.demo;

public class Test {
    public static void main(String[] args) {
        String str="Apple";
        System.out.println(str);

        String str2="\"Apple\""; //输出"Apple"
        System.out.println(str2);

        String str3="A apple \"pie\" ";
        System.out.println(str3);

        String str4="\\Apple";
        System.out.println(str4);

        String flag="true";
        String token="123";
        String res="{\"flag\":"+flag+",\"token\":\""+token+"\"}"; 
        System.out.println(res);

        String res2="{\"flag\":\"" +flag+"\",\"token\":\""+token+"\"}"; 
        System.out.println(res2);
    }

}

技术分享图片

Java中字符串的拼接和转义

标签:term   code   java   process   stat   demo   ado   test   pac   

原文地址:http://blog.51cto.com/59465168/2173192

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!