Locale-Sensitive Java Method
java.lang.String
public String()
public String(String original)
public String(char[] value)
public String(char[] value,
int offset,
int count)
public String(byte[] ascii,
int hibyte,
int offset,
int count)
public String(byte[] ascii,
int hibyte)
public String(byte[] bytes,
int offset,
int length,
String charsetName)
throws UnsupportedEncodingException
public String(byte[] bytes,
String charsetName)
throws UnsupportedEncodingException
public String(byte[] bytes,
int offset,
int length)
public String(byte[] bytes)
public String(StringBuffer buffer)
Internationalization (I18n) Function Overview
The String constructor creates new strings.
For more information on String , click
here.
|