About 11,100,000 results
Open links in new tab
  1. How do I compare strings in Java? - Stack Overflow

    Apr 2, 2013 · String.contentEquals () compares the content of the String with the content of any CharSequence (available since Java 1.5). Saves you from having to turn your StringBuffer, etc into a …

  2. java - String.equals versus == - Stack Overflow

    Let's see it happen in Java terms. Here's the source code of String's equals() method: It compares the Strings character by character, in order to come to a conclusion that they are indeed equal. That's …

  3. What is the difference between String[] and String... in Java?

    What's actually the difference between String[] and String... if any? The convention is to use String[] as the main method parameter, but using String... works too, since when you use varargs you can call …

  4. Java: how to initialize String []? - Stack Overflow

    9 I believe you just migrated from C++, Well in java you have to initialize a data type (other then primitive types and String is not a considered as a primitive type in java ) to use them as according to their …

  5. Append a single character to a string or char array in java?

    Is it possible to append a single character to the end of array or string in java. Example:

  6. How can I print a string adding newlines in Java?

    The Java compiler removes this incidental whitespace and keeps the essential whitespace. Then the .indent(4) method call adds four trailing spaces, essential indentation I want to add.

  7. java - Get string character by index - Stack Overflow

    The endIndex (second parameter) of String.substring(int, int) is an exclusive index, and it won't throw an exception for index + 1 as long as index < length() -- which is true even for the last character in the …

  8. java - How to insert a character in a string at a certain position ...

    I'm getting in an int with a 6 digit value. I want to display it as a String with a decimal point (.) at 2 digits from the end of int. I wanted to use a float but was suggested to use String for a ...

  9. How to format strings in Java - Stack Overflow

    Primitive question, but how do I format strings like this: "Step {1} of {2}" by substituting variables using Java? In C# it's easy.

  10. difference between new String[]{} and new String[] in java

    String array = new String[10]{}; //The line you mentioned above Was wrong because you are defining an array of length 10 ([10]), then defining an array of length 0 ({}), and trying to set them to the same …