我无法记住它的名称,因为我是java新手,但我想知道在Eclipse格式化程序中哪里可以找到它。在我的getBookData方法中,我希望逗号之后的内容不能开始新行。
package input;
import java.io.IOException;
import java.nio.charset.Charset;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.stream.Stream;
public class ReadFile {
public static Object[] currentBookData;
public static void getBookData() throws IOException {
try (Stream<String> stream = Files.lines(Paths.get("C:/test.txt"), Charset.defaultCharset())) { // I want the stuff after the comma to be on the same line.
currentBookData = stream.toArray();
}
catch (IOException ex) {
System.out.println(ex.getMessage());
}
}
}
答案 0 :(得分:1)
导航:
"Window -> Preferences -> Java ->Code Style -> Formatter".
调整现有模板或创建/导入新模板并使用相同的模板。
要更改最大线宽,请选择一个配置文件,然后导航:
"Edit -> Line Wrapping"
并在&#34;最大线宽&#34;中设置所需的字符长度。例如&#34; 100&#34;