您的位置:

java输出字符串,JAVA输出字符串换行

本文目录一览:

java中jtextfield中如何输出字符串操作

JTextField 是一个轻量级组件,它允许编辑单行文本。

输出字符串,可以用它的父类方法:setText(String t) 来实现。只要把需显示的字符串作实参调用这个方法就可以。比如:

String str="你好";

text.setText(str);

名为text的JTextField组件的内容就会显示为“你好”。

另外,要取得其内容,则要用到getText()方法,该方法返回一个字符串,其内容为组件的内容。

JAVA按格式输出字符串

在Java编程中格式化字符串,用String类的静态方法String.format():

format(Locale l, String format, Object... args) 

//使用指定的语言环境、格式字符串和参数返回一个格式化字符串。

format(String format, Object... args) 

//使用指定的格式字符串和参数返回一个格式化字符串。

举几个这个方法实用的例子(注释是输出结果):

//案例1

long now = System.currentTimeMillis();

String s = String.format("%tR",now);   //输出当前时间的小时和分钟

// 格式化输出结果"09:22"

//案例2

Date d = new Date(now);

s = String.format("%tD",d);   //输出当前时间的month/day/year      

// 格式化输出结果"11/05/15"

Java的常用输入输出语句?

常用的输入语句是:

输入字符串:new Scanner(System.in).next();

输入整数:new Scanner(System.in).nextInt();

输入小数:new Scanner(System.in).nextDouble();

常用的输出语句:

换行输出: System.out.println(变量或字符串);

非换行输出: System.out.print(变量或字符串);

换行输出错误提示(默认是红字):System.err.println(变量或字符串);

不换行输出错误提示(默认是红字): System.err.print(变量或字符串));

java 字符串输出

system.out.println("输出内容") ; 输出内容并换行

system.out.print("输出内容") ; 输出内容不换行

System 是一个类,out是一个static PrintStream 对象。由于它是“静态”的,所以不需要我们创建任何东西,所以只需直接用它即可。

println()的意思是“把我给你的东西打印到控制台,并用一个新行结束”。所以在任何Java 程序中,一旦要把某些内容打印到控制台,就可条件反射地写上System.out.println("内容")。

java中的输出string字符串,是乱码

同学,这个不是乱码。

数组本身是没有toString()方法的。

你这里有个默认的调用 Object.toString()

Object中的toString()方法,是将传入的参数的类型名和摘要(字符串的hashcode的十六进制编码)返回。

也就是说,你直接对数组使用了toString()方法,就会得到 一个Ljava.lang.String;@175d6ab

其中,Ljava.lang.String 是指数据是String类型的,175d6ab是摘要了

你要想得到你要的类型,需要使用循环的方法来输出数组中的每一个值。

下面是jdk中关于toString()方法的注释:

/**

* Returns a string representation of the object. In general, the

* {@code toString} method returns a string that

* "textually represents" this object. The result should

* be a concise but informative representation that is easy for a

* person to read.

* It is recommended that all subclasses override this method.

* p

* The {@code toString} method for class {@code Object}

* returns a string consisting of the name of the class of which the

* object is an instance, the at-sign character `{@code @}', and

* the unsigned hexadecimal representation of the hash code of the

* object. In other words, this method returns a string equal to the

* value of:

* blockquote

* pre

* getClass().getName() + '@' + Integer.toHexString(hashCode())

* /pre/blockquote

*

* @return a string representation of the object.

*/

Object中的toString()方法实现:

public String toString() {

return getClass().getName() + "@" + Integer.toHexString(hashCode());

}