javax vs java package

前端 未结 7 1135
长发绾君心
长发绾君心 2020-11-29 14:30

What\'s the rationale behind the javax package? What goes into java and what into javax?

I know a lot of enterprise-y packages are in javax, but so is Swing, the new

相关标签:
7条回答
  • 2020-11-29 15:26

    java.* packages are the core Java language packages, meaning that programmers using the Java language had to use them in order to make any worthwhile use of the java language.

    javax.* packages are optional packages, which provides a standard, scalable way to make custom APIs available to all applications running on the Java platform.

    0 讨论(0)
提交回复
热议问题