简体   繁体   English

如何在Windows 8中以64位运行32位创建的Java项目

[英]how to run java project created in 32 bit in 64 bit in windows 8

I have developed a java project in 32 bit Os. 我已经在32位操作系统中开发了一个Java项目。 I am unable to use it in 64 bit Os. 我无法在64位操作系统中使用它。 Is there any solution for this? 有什么解决办法吗? My system is 64 bit windows 8 right now. 我的系统现在是64位Windows 8。 I am unable to use the project here. 我无法在这里使用该项目。 Please help me. 请帮我。

There shouldn't be any problem, we have backward compatibility. 应该没有问题,我们具有向后兼容性。 Things developed on 64 bits don't work on 32 since they are developed on newer apis but things developed on older version work smoothly since the never versions are backward compatible. 用64位开发的东西不能在32位上工作,因为它们是用较新的apis开发的,但是用较老版本开发的东西可以正常工作,因为never版本是向后兼容的。

Even Java in nature is built for platform independent programming, you can quickly turn your java program into a highly platform dependent one. 即使Java本质上是为平台无关的编程而构建的,您也可以快速将Java程序转变为高度依赖平台的程序。 For example, using native libraries, making OS specific file system operations. 例如,使用本机库,进行操作系统特定的文件系统操作。 Try to avoid these and try to get rid of them. 尝试避免这些,并尝试摆脱它们。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM