Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | None | 0 0
  1. C:\Users\Randy Tran>java -d64
  2. Usage: java [-options] class [args...]
  3. (to execute a class)
  4. or java [-options] -jar jarfile [args...]
  5. (to execute a jar file)
  6. where options include:
  7. -d32 use a 32-bit data model if available
  8. -d64 use a 64-bit data model if available
  9. -server to select the "server" VM
  10. The default VM is server.
  11.  
  12. -cp <class search path of directories and zip/jar files>
  13. -classpath <class search path of directories and zip/jar files>
  14. A ; separated list of directories, JAR archives,
  15. and ZIP archives to search for class files.
  16. -D<name>=<value>
  17. set a system property
  18. -verbose:[class|gc|jni]
  19. enable verbose output
  20. -version print product version and exit
  21. -version:<value>
  22. Warning: this feature is deprecated and will be removed
  23. in a future release.
  24. require the specified version to run
  25. -showversion print product version and continue
  26. -jre-restrict-search | -no-jre-restrict-search
  27. Warning: this feature is deprecated and will be removed
  28. in a future release.
  29. include/exclude user private JREs in the version search
  30. -? -help print this help message
  31. -X print help on non-standard options
  32. -ea[:<packagename>...|:<classname>]
  33. -enableassertions[:<packagename>...|:<classname>]
  34. enable assertions with specified granularity
  35. -da[:<packagename>...|:<classname>]
  36. -disableassertions[:<packagename>...|:<classname>]
  37. disable assertions with specified granularity
  38. -esa | -enablesystemassertions
  39. enable system assertions
  40. -dsa | -disablesystemassertions
  41. disable system assertions
  42. -agentlib:<libname>[=<options>]
  43. load native agent library <libname>, e.g. -agentlib:hprof
  44. see also, -agentlib:jdwp=help and -agentlib:hprof=help
  45. -agentpath:<pathname>[=<options>]
  46. load native agent library by full pathname
  47. -javaagent:<jarpath>[=<options>]
  48. load Java programming language agent, see java.lang.instrument
  49. -splash:<imagepath>
  50. show splash screen with specified image
  51. See http://www.oracle.com/technetwork/java/javase/documentation/index.html for more details.
  52.  
  53. C:\Users\Randy Tran>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement