Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
String stringToConvert = "this is a test";
byte[] theByteArray = stringToConvert.getBytes();
System.out.println(theByteArray.length);
}
}
//14