About 8,690,000 results
Open links in new tab
  1. What is the percent % operator in java? - Stack Overflow

    Jul 16, 2021 · What is the percent % operator in java? Asked 8 years, 1 month ago Modified 3 years, 11 months ago Viewed 63k times

  2. java - Extracting .jar file with command line - Stack Overflow

    Dec 10, 2011 · Java has a class specifically for zip files and one even more specifically for Jar Files. java.util.jar.JarOutputStream java.util.jar.JarInputStream using those you could, on a …

  3. Is there a difference between x++ and ++x in java?

    Jul 7, 2009 · 12 In Java there is a difference between x++ and ++x ++x is a prefix form: It increments the variables expression then uses the new value in the expression. For example if …

  4. How do the post increment (i++) and pre increment (++i) …

    How do the post increment (i++) and pre increment (++i) operators work in Java? Asked 15 years, 4 months ago Modified 1 year, 1 month ago Viewed 445k times

  5. java - Setting active profile and config location from command …

    Jun 25, 2015 · I was running it from eclipse and not command line till now. But I tried running from using "gradle bootRun -Dspring.config.location=C:\Config\ -Dspring.profiles.active=staging" …

  6. java - SSL and cert keystore - Stack Overflow

    Aug 16, 2021 · SSL properties are set at the JVM level via system properties. Meaning you can either set them when you run the program (java -D....) Or you can set them in code by doing …

  7. What are the -Xms and -Xmx parameters when starting JVM?

    Feb 7, 2013 · The flag Xmx specifies the maximum memory allocation pool for a Java Virtual Machine (JVM), while Xms specifies the initial memory allocation pool. This means that your …

  8. java - What is a classpath and how do I set it? - Stack Overflow

    Mar 7, 2010 · I was just reading this line: The first thing the format() method does is load a Velocity template from the classpath named output.vm Please explain what was meant by …

  9. Proper usage of Java -D command-line parameters

    When passing a -D parameter in Java, what is the proper way of writing the command-line and then accessing it from code? For example, I have tried writing something like this...

  10. What is the difference between == and equals () in Java?

    Nov 22, 2019 · 0 In Java, == and the equals method are used for different purposes when comparing objects. Here's a brief explanation of the difference between them along with …