only write a string to a file

Hello togehter!

I am writing to a txt file.

I am just trying to write "Hallo".

So I want to have a file just saying hello, but what I got is:

00000000h: 00 48 00 61 00 6C 00 6F ; .H.a.l.l.o

Is there a way where I can just write Hallo, without the explanation?

Thanks for your help.

Markus

[337 byte] By [Markus1982a] at [2007-11-26 18:05:51]
# 1
Convert your string to a char array and write every single character withthe method write(byte) of OutputStream.or Use OutputStreamWriter, created with an appropriate encoding of your choice (ASCII ?).
jcseijopa at 2007-7-9 5:36:35 > top of Java-index,Java Mobility Forums,Java ME Technologies...