在Java中,可以使用System.out.println()方法來打印字符串。例如:
public class HelloWorld {
public static void main(String[] args) {
String message = "Hello, World!";
System.out.println(message);
}
}
在上面的例子中,我們定義了一個(gè)字符串變量message并賦值為"Hello, World!“,然后使用System.out.println()方法打印這個(gè)字符串。運(yùn)行程序后,控制臺(tái)會(huì)輸出"Hello, World!”。