0

这是一门初学者课程,因此可能有一种更简单的方法,但是有人可以查看我的代码并告诉我为什么它不会拆分最后一个字符串并打印它吗?我前两次成功拆分它。

////////////////////////////////////////////// string line =“ user = abby&topic = 0&message = i+cose+coss等待+等待+雪。";

    String[] parts = line.split("&"); //split&
    String part1 = parts[0]; // user=Abby 
    String part2 = parts[1];//  topic=0
    String part3 = parts[2];//  message=I+cannotwaitforthesnow

    String[] user = part1.split("=");  //Split USER=Abby
    String user1 = user[0]; // user
    String user2 = user[1]; //  Abby

    String[] topic = part2.split("=");  //split topi=0
    String topic1 = topic[0]; // Topic
    String topic2 = topic[1]; // 0

    String[] text = part3.split("="); //split message=iasd
    String text1 = text[0]; // message
    String text2 = text[1]; // I+cannot+wait+for+the+snow


    String[] message = text2.split("+"); //split I+cannot+wait+for+the+snow.
    String message1 = message[0];//I
    String message2 = message[1];//cannot
    String message3 = message[2];//wait
    String message4 = message[3];//for
    String message5 = message[4];//the
    String message6 = message[5];//snow.


    output.println("This is the input that the client sent: ");

    System.out.println(user2);
    System.out.println(topic1 + topic2);
    System.out.println(message1 + message2 + message3 + message4 + message5 + message6);

////////////////////

所以它成功地工作了,但是当我在最后添加消息的拆分时,它没有拆分和打印,只是空白。有人告诉我为什么吗?

谢谢你的帮助

4

2 回答 2

4

Javadocs 说

公共字符串 [] 拆分(字符串正则表达式)

围绕给定正则表达式的匹配拆分此字符串。

而 + 是正则表达式中的保留字符,因此您需要对其进行转义。

于 2013-11-07T20:59:49.620 回答
0

你应该试试

String[] message = text2.split("\\+");

在java中'+'是一个保留字符,你应该用'\'转义它以便在这个上下文中使用它

于 2013-11-07T21:00:16.843 回答