我是靠谱客的博主 土豪乐曲,最近开发中收集的这篇文章主要介绍Windows下的java串口开发环境配置,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

一.需要的工具和文件

1.myeclipse 版本:3.0以上即可。

2.rxtx-2.1-7-bins-r2 .zip 出处:http://users.frii.com/jarvi/rxtx/download.html。

3.JDK 版本:我用的是1.5版,但是我认为更低的版本也没有问题。

二.环境搭建的步骤

step1.在eclipse中新建一个工程(根据你自己的需要,Applet,tomcat,java工程等均可)。

step2.在工程下建一个lib文件夹。

114531_FTOI_854933.png

step3.将rxtx-2.1-7-bins-r2 .zip解压缩,得到文件夹[rxtx-2.1-7-bins-r2]。

step4.将[rxtx-2.1-7-bins-r2]RXTXcomm.jar这个文件copy到step2创建的lib中。

step5.将[rxtx-2.1-7-bins-r2]Windowsi368-mingw32目录下的两个dll文件copy到step2创建的lib中。

step6.在工程上右键 -> Properties -> Java Builder Path -> Libraries -> Add JARs -> 选择step2中创建的lib目录下的RXTXcomm.jar -> OK。

step7.最关键的一步:  点RXTXcomm.jar前面的小加号(+) -> 选择Native library location -> 点右边一列按钮中的Edit… -> 选择step2中创建的lib目录 -> OK。

114333_pwqd_854933.png

补充:如果你的代码需要调用本地dll,你可以通过同样的方式设置Native library location。

注意:

系统如果需要64位的插件,可以从下面的链接下载:

http://fizzed.com/oss/rxtx-for-java

三.环境配置完了以后,可以写一个程序来测试一下了。以下是我的test程序。

import gnu.io.CommPortIdentifier;
import java.util.Enumeration;

public class CommTest {
    static CommPortIdentifier portId;
    static Enumeration portList;
    static int bauds[] = { 9600, 19200, 57600, 115200 };

    public static void main(String[] args) {
        portList = CommPortIdentifier.getPortIdentifiers();
        while (portList.hasMoreElements()) {
            portId = (CommPortIdentifier) portList.nextElement();
            if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
                System.out.println("Find CommPort: " + portId.getName());
            }
        }
    }
}

转载于:https://my.oschina.net/jackguo/blog/1621231

最后

以上就是土豪乐曲为你收集整理的Windows下的java串口开发环境配置的全部内容,希望文章能够帮你解决Windows下的java串口开发环境配置所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部