Method getBytes()
Return type: byte
Member of: java.lang.String
[api documentation ] [ main menu]

Examples of how the element is used (one line per example):
[add your own example]

1 this(s.getBytes());
2 setValue(text.getBytes());
3 byte[] buf = str.getBytes();
4 write(s.getBytes());
5 checksum.update(str.getBytes());
6 crc.update(bodyContent.getBytes());
7 crc.update(bodyContent.getBytes());
8 private static ByteArrayInputStream bais = new ByteArrayInputStream(empty.getBytes());
9 out.write(Integer.toString(i).getBytes());
10 out.write(Integer.toString(i).getBytes());
11 System.getProperty("line.separator").getBytes(), new byte[] { '\r', '\n' }); //$NON-NLS-1$
12 replace(value.getBytes(), pos, width);
13 byte[] buf= str.getBytes();
14 out.write(toString().getBytes());
15 setHeader (header.getBytes());
16 out.write(body.getBytes());
17 writeBytes(data.getBytes(), fileName);
18 return String.valueOf(value).getBytes();
19 return toInputStream ( s.getBytes ( ) );
20 this.addressBytes = address.getBytes();
Java and J2SE are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other Countries.