weka导入Eclipse


Since the  Subversion structure changed in early November 2008, the structure of the  weka-src.jar changed as well. This affects the nightly snapshots and versions later than 3.4.13 and 3.5.8.

The Example setup used in this HOWTO is for a Linux/Unix based operating system. If you are using Windows, you will have to adapt the paths accordingly (using backslashes instead forward slashes).

Requirements

  • ANT
  • Java 1.4 or later for Weka 3.4.x
  • Java 1.5 or later for Weka 3.5.x or later

up to 3.4.13 and 3.5.8

Extract the source code

  • Create a directory for the source code, e.g., the following:
    /tmp/weka
  • Extract the source code from the weka-src.jar with any archive manager that can handle the ZIP file format into the directory you just created (don't forget to re-recreate the folder structure when extracting).
  • change into the weka package and run the build.xml from command-line for creating all the necessary directories:
    ant exejar

Setup Eclipse

  • Start up Eclipse
  • Create a new Java project
    File -> New -> Project...

  • Eclipse-34x-wekasrcjar-New-JavaProject.png

  • Name the project Weka
  • check Create separate folders for source and class files and use the following folders:
    • Source folder name: <leave empty>
    • Output folder name: build/classes

  • Eclipse-34x-wekasrcjar-folders.png

  • check Create project from existing code and use the following path:
    /tmp/weka

  • Eclipse-34x-wekasrcjar-existingsource.png

  • Exclude the build and dist directories from the build path and make sure that the default output folder is the following directory (Weka is the project name):
    Weka/build/classes

  • Eclipse-34x-wekasrcjar-projectsettings.png

  • Click on Finish

newer than 3.4.13 and 3.5.8

Extract the source code

  • Create a directory for the source code, e.g., the following:
    /tmp/weka
  • Extract the source code from the weka-src.jar with any archive manager that can handle the ZIP file format into the directory you just created (don't forget to re-recreate the folder structure when extracting).
  • create a lib directory, if necessary (on the same level as src)
  • run the build.xml (above the src directory) from command-line for creating all the necessary directories:
    ant exejar

Setup Eclipse

  • Start up Eclipse
  • Create a new Java project
    File -> New -> Project...

  • Eclipse-34x-wekasrcjar2-New-JavaProject.png

  • Name the project Weka
  • check Create separate folders for source and class files and use the following folders:
    • Source folder name: src/main/java
    • Output folder name: build/classes

  • Eclipse-34x-wekasrcjar2-folders.png

  • check Create project from existing code and use the following path:
    /tmp/weka

  • Eclipse-34x-wekasrcjar2-existingsource.png

  • Exclude the src/test/java directory from the build path and make sure that the default output folder is the following directory (Weka is the project name):
    Weka/build/classes

  • Eclipse-34x-wekasrcjar2-projectsettings.png

  • Click on Finish
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
注意要点: 1,Topay里面的参数要填好:appid,appsecret,mch_id,partnerkey,spbill_create_ip 2,openid 需要微信授权获取到 3,每次支付orderNo要不同 openid参考实例: 1,授权链接地址:https://open.weixin.qq.com/connect/oauth2/authorize?appid=wxba3445566677&redirect_uri=http://www.acc.com/weixin/pay/paydispatcher&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect 2,转向处理地址:通过第一个链接微信会把code传过来,之前参数获取就行 @RequestMapping(value = "/paydispatcher", method = { RequestMethod.GET }) public void payDispatcher(HttpServletRequest request, HttpServletResponse response) throws Exception { String code = request.getParameter("code"); String msg=""; if(code==null||code.equals("")){ msg="获取微信Code失败!"; request.setAttribute("msg" ,msg); request.getRequestDispatcher("/jsp/login.jsp").forward(request,response); }else{ WeixinUtil util = new WeixinUtil(); UserAccessToken token = (UserAccessToken) request.getSession().getAttribute("UserAccessToken"); if(null==token){ token = util.getAccessToken3(Constants.APPID, Constants.SECRET,code); request.getSession().setAttribute("UserAccessToken",token); } request.setAttribute("openid", token.getOpenid()); request.setAttribute("accessToken", token.getAccessToken()); request.setAttribute("refreshToken", token.getRefreshToken()); request.setAttribute("expiresIn", token.getExpiresIn()); request.getRequestDispatcher("/pay/index.jsp").forward(request,response); } } // 获取用户openid accesstoken public static UserAccessToken getAccessToken3(String appid , String appsecret,String code) { UserAccessToken accessToken = null; String requestUrl = Constants.GET_OPENID_ACCESSTOKEN_URL.replace("APPID" , appid).replace("APPSECRET" , appsecret).replace("CODE" , code); String json = httpRequest(requestUrl , "GET" , null); JSONObject jsonObject = JSONObject.fromObject(json); // 如果请求成功 if (null != jsonObject) { try { accessToken = new UserAccessToken(); accessToken.setAccessToken(jsonObject.getString("access_token")); accessToken.setRefreshToken(jsonObject.getString("refresh_token")); accessToken.setExpiresIn(jsonObject.getInt("expires_in")); accessToken.setOpenid(jsonObject.getString("openid")); accessToken.setScope(jsonObject.getString("scope")); } catch (Exception e) { accessToken = null; // 获取token失败 System.out.println("获取token失败 errcode:{} errmsg:{}"); } } return accessToken; }

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值