Main navigation
Home
Contact
Emulators
Tutorials
Developer
Services
Mobile
Games
Links
Login
Legal
Site map
Tutorials
section navigation
3D Studio Max
Abbreviations
ADSL installation
Advertising programs
for publishers
BitComet
Character Encoding
Quick Guide
Cascading Style Sheet Quick Guide
Top Level Domain
Country Codes
Language Codes
Country Currency Codes
Country Language Codes
Design Patterns
HomeSite
How to use JDBC
How WAP works
How to serve midlets
on a web server
How to serve WAP docs on a web server
HTML Quick Guide
HTTP error codes
J2EE deployment descriptors
Java Pet Store Tutorial
Java Quick Guide
Javascript
Reference Guide
JSP Quick Guide
Linksys Wireless Access Point Router with 4-Port Switch (BEFW11S4 ver. 3)
Linksys Wireless Network PC Card (WPC11 ver. 3.0)
Mac OS
MIDI
Mime types
Model View Controller Explained
PDF
Plesk
QR code
RTTTL
Search Engine Optimisation Quick Guide
Software drivers
Software Licenses
UML Reference
Unix
Web development process
Web service
Whois servers list
Windows Quick Guide
XHTML Quick Guide
XPath
XSLT
Translate this page
Select Language:
Afrikaans
Albanian
Arabic
Belarusian
Bulgarian
Catalan
Chinese (Simplified)
Chinese (Traditional)
Croatian
Czech
Danish
Dutch
Estonian
Filipino
Finnish
French
Galician
German
Greek
Haitian Creole
Hebrew
Hindi
Hungarian
Icelandic
Indonesian
Irish
Italian
Japanese
Korean
Latvian
Lithuanian
Macedonian
Malay
Maltese
Norwegian
Persian
Polish
Portuguese
Romanian
Russian
Serbian
Slovak
Slovenian
Spanish
Swahili
Swedish
Thai
Turkish
Ukrainian
Vietnamese
Welsh
Yiddish
Print this page
Share
Mobilefish Firefox search plugin
Mobilefish button for Google toolbar
Google+
Java Quick Guide
This guide contains useful Java information.
Quick guides
Java Command
Javac Command
Jar Tool
Java API Documentation
Javadoc Comments
Java Code Conventions
Helper Java applications
Create a WAR file
keytool
keytool code examples
keytool and certificates
Java boolean type
Java byte type
Java char type
Java string type
Java short type
Java integer type
Java long type
Java float type
Java double type
Java bitwise operations
Java class file format
JVM instruction set
Java string type.
Information
A String is nothing more than an array of characters (
char
), for example:
public class DemoString {
public static void main (String[] args) {
char data[] = {'h','e','l','l','o'};
String str = new String(data);
System.out.println(str);
}
}
You should see:
hello
Posted comments
Poll