We use cookies to improve user experience, and analyze website traffic. Accept
The comparison of strings is one of the mostly used Java operations. If you’re looking for different ways to compare two strings in Java, you’re at the right place.
Learn 3 ways of creating files in Java with examples. Use java.io.File class, java.io.FileOutputStream class or Java NIO Files.write() class for creating new files in Java.
Learn the two static methods of createTempFile of the File class. Use the deleteOnExit() method to ensure that the temporary created file will automatically be deleted.
Learn the ways to split a string in Java. The most common way is using the String.split () method, also see how to use StringTokenizer and Pattern.compile ().