What Issues prevent Java applications from working on multiple platforms?

后端 未结 8 2124
南笙
南笙 2020-12-14 08:59

Java is supposed to be \"write once, run anywhere\" and it really can be, but in some cases it turns into \"write once, debug everywhere\".

What are the most common

相关标签:
8条回答
  • 2020-12-14 09:41

    Using classes from the com.sun.* packages that come with the Sun JDK.

    0 讨论(0)
  • 2020-12-14 09:45

    Few from UI area:

    • Incorrect ordering of buttons like OK/Cancel
    • Using absolute layouts
    • Different accelerator keys
    • Different sizes/rendering of fonts
    • Expecing certain keys to be present (Windows key, Meta key)

    (These are not Java specific though)

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