提供好网站可以编写及测试
http://www.tutorialspoint.com/codingground.htm
这是我写的程式码,你必须修改很多。
public class PTTJavaFor_yuffy0327_20150107 {
private static String spaceship = "";
private static String universe = "IN(ABC)";
public static void main(String[] args) {
//System.out.println("Hello QWERTY0981");
String globe = "OUT(DEF)";
String[] as = universe.split("[()]");
spaceship += as[1];
as = globe.split("[()]");
spaceship += ", ";
spaceship += as[1];
//System.out.println("Have a wonderful day");
}
}
※ 引述《yuffy0327 (鱼排)》之铭言:
: 标题: [问题] 字串合并的问题
: 时间: Wed Jan 7 01:43:28 2015
:
: 先描述一下状况: 我加载一个txt档案, 内容如下
: -----
: | test.txt |
: |-----|
: | IN(ABC) |
: | OU(DEF) |
: -----
: 使用 while ((str = reader.readLine()) != null)
:
: 将他读取后再使用 String[] as = str.split("[()]");
:
: 执行结果: 第一次 as[0] = IN as[1] = ABC
: 第二次 as[0] = OU as[1] = DEF
:
: 问题:我该怎么做才能得到"ABC, DEF"的字串呢?
:
: 不是做System.out.print用途, 是想得到一个String变量里面塞这两个字串
:
: 麻烦版上的各位高手帮小弟解答了OTZ
:
: