微信java版
① 微信怎么没有java版本
目前微信支持IOS、Android、S60V3、S60V5、Windows
Phone五种操作系统的手机,暂不支持JAVA版本
② JAVA手机能用微信吗
- JAVA手机不能使用微信。微信只支持symbian和android等智能系统手机。 
- 微信支持多种语言,支持Wi-Fi无线局域网、2G,3G和4G移动数据网络,iOS版,Android版、Windows Phone版、Blackberry版、诺基亚S40版、S60V3和S60V5版。 
 微信的最新版本:5.2.1(Android)、5.2.0.17(iOS)、4.2(Symbian)、5.1.0.0(Windows Phone 8)、1.5(诺基亚S40)、3.0(BlackBerry)、2.0(BlackBerry 10)。
③ 如何使用微信sdk java版
1.首先我们新建一个Java开发包WeiXinSDK
2.包路径:com.ansitech.weixin.sdk
测试的前提条件:
假如我的公众账号微信号为:vzhanqun 
我的服务器地址为:http://www.vzhanqun.com/
下面我们需要新建一个URL的请求地址
我们新建一个Servlet来验证URL的真实性,具体接口参考
http://mp.weixin.qq.com/wiki/index.php?title=接入指南
3.新建com.ansitech.weixin.sdk.WeixinUrlFilter.java
这里我们主要是获取微信服务器法师的验证信息,具体验证代码如下
[java] view plain  print?
package com.ansitech.weixin.sdk;  
  
import com.ansitech.weixin.sdk.util.SHA1;  
import java.io.IOException;  
import java.util.ArrayList;  
import java.util.Collections;  
import java.util.Comparator;  
import java.util.List;  
import javax.servlet.Filter;  
import javax.servlet.FilterChain;  
import javax.servlet.FilterConfig;  
import javax.servlet.ServletException;  
import javax.servlet.ServletRequest;  
import javax.servlet.ServletResponse;  
import javax.servlet.http.HttpServletRequest;  
import javax.servlet.http.HttpServletResponse;  
  
public class WeixinUrlFilter implements Filter {  
  
    //这个Token是给微信开发者接入时填的  
    //可以是任意英文字母或数字,长度为3-32字符  
    private static String Token = "vzhanqun1234567890";  
  
    @Override  
    public void init(FilterConfig config) throws ServletException {  
        System.out.println("WeixinUrlFilter启动成功!");  
    }  
  
    @Override  
    public void doFilter(ServletRequest req, ServletResponse res,  
            FilterChain chain) throws IOException, ServletException {  
        HttpServletRequest request = (HttpServletRequest) req;  
        HttpServletResponse response = (HttpServletResponse) res;  
        //微信服务器将发送GET请求到填写的URL上,这里需要判定是否为GET请求  
        boolean isGet = request.getMethod().toLowerCase().equals("get");  
        System.out.println("获得微信请求:" + request.getMethod() + " 方式");  
        if (isGet) {  
            //验证URL真实性  
            String signature = request.getParameter("signature");// 微信加密签名  
            String timestamp = request.getParameter("timestamp");// 时间戳  
            String nonce = request.getParameter("nonce");// 随机数  
            String echostr = request.getParameter("echostr");//随机字符串  
            List<String> params = new ArrayList<String>();  
            params.add(Token);  
            params.add(timestamp);  
            params.add(nonce);  
            //1. 将token、timestamp、nonce三个参数进行字典序排序  
            Collections.sort(params, new Comparator<String>() {  
                @Override  
                public int compare(String o1, String o2) {  
                    return o1.compareTo(o2);  
                }  
            });  
            //2. 将三个参数字符串拼接成一个字符串进行sha1加密  
            String temp = SHA1.encode(params.get(0) + params.get(1) + params.get(2));  
            if (temp.equals(signature)) {  
                response.getWriter().write(echostr);  
            }  
        } else {  
            //处理接收消息  
        }  
    }  
  
    @Override  
    public void destroy() {  
          
    }  
}  
好了,不过这里有个SHA1算法,我这里也把SHA1算法的源码给贴出来吧!
4.新建com.ansitech.weixin.sdk.util.SHA1.java
[java] view plain  print?
/* 
 * 微信公众平台(JAVA) SDK 
 * 
 * Copyright (c) 2014, Ansitech Network Technology Co.,Ltd All rights reserved. 
 * http://www.ansitech.com/weixin/sdk/ 
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); 
 * you may not use this file except in compliance with the License. 
 * You may obtain a  of the License at 
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0 
 * 
 * Unless required by applicable law or agreed to in writing, software 
 * distributed under the License is distributed on an "AS IS" BASIS, 
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 
 * See the License for the specific language governing permissions and 
 * limitations under the License. 
 */  
package com.ansitech.weixin.sdk.util;  
  
import java.security.MessageDigest;  
  
/** 
 * <p>Title: SHA1算法</p> 
 * 
 * @author qsyang<[email protected]> 
 */  
public final class SHA1 {  
  
    private static final char[] HEX_DIGITS = {'0', '1', '2', '3', '4', '5',  
                           '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};  
  
    /** 
     * Takes the raw bytes from the digest and formats them correct. 
     * 
     * @param bytes the raw bytes from the digest. 
     * @return the formatted bytes. 
     */  
    private static String getFormattedText(byte[] bytes) {  
        int len = bytes.length;  
        StringBuilder buf = new StringBuilder(len * 2);  
        // 把密文转换成十六进制的字符串形式  
        for (int j = 0; j < len; j++) {  
            buf.append(HEX_DIGITS[(bytes[j] >> 4) & 0x0f]);  
            buf.append(HEX_DIGITS[bytes[j] & 0x0f]);  
        }  
        return buf.toString();  
    }  
  
    public static String encode(String str) {  
        if (str == null) {  
            return null;  
        }  
        try {  
            MessageDigest messageDigest = MessageDigest.getInstance("SHA1");  
            messageDigest.update(str.getBytes());  
            return getFormattedText(messageDigest.digest());  
        } catch (Exception e) {  
            throw new RuntimeException(e);  
        }  
    }  
}  
5.把这个Servlet配置到web.xml中
[html] view plain  print?
<filter>  
    <description>微信消息接入接口</description>  
    <filter-name>WeixinUrlFilter</filter-name>  
    <filter-class>com.ansitech.weixin.sdk.WeixinUrlFilter</filter-class>  
</filter>  
<filter-mapping>  
    <filter-name>WeixinUrlFilter</filter-name>  
    <url-pattern>/api/vzhanqun</url-pattern>  
</filter-mapping>  
好了,接入的开发代码已经完成。
6.下面就把地址URL和密钥Token填入到微信申请成为开发者模式中吧。
④ 微信有JAVA通用版吗
微信官方没有JAVA通用版。
微信版本:iOS版、Android版、MAC版、微信电脑插件版(Windows 、Windouws phone 7、Windouws phone 8)、symbian版、BlackBerry版、BlackBerry 10版、series 40版。

(4)微信java版扩展阅读:
微信版本介绍:
1、微信支持多种语言,Wi-Fi无线局域网,2G,3G和4G移动数据网络,iOS,Android,Windows Phone,Blackberry,诺基亚S40,S60V3和S60V5。
2、相关版本的微信举例:7.0.4(Android),7.0.4(iOS),4.2(Symbian),5.1.0.0(Windows Phone 8),1.5(Nokia S40),3.0(BlackBerry),2.0( BlackBerry 10)。
3、微信网页版本:腾讯在微信官方网站上提供了微信网页版本。 用户可以登录微信网页进行二维码扫描与好友交流,也可以使用网页进行文件传输。
4、企业微信:2016年3月10日,微信首次正式公布“企业微信”的相关细节,并表示将在未来一两个月发布,引起企业和用户的广泛关注 。 经过一个多月的测试,Android版“企业微信”通过腾讯应用宝正式启动。
⑤ 能用java做微信二次开发吗
若是微信提供了sdk,你就比较容易做二次开发了。微信是腾讯的产品,你要做什么二次开发?java可以开发任意的安卓软件安卓版的微信没有任何问题安卓开发就是java语言应用的一个大方向!!别的我就不多说了当然可以用java语言进行微信的二次开发呀
⑥ java系统的手机可以受用微信吗
不能,微信目前并没有开发java版微信,而且据说以后也不会开发java版微信.不用等了,还是买个智能机吧,目前智能机也很便宜,就是电池不行.
⑦ 手机微信有java版本么
没有的,官网上没的下。
微信是腾讯为智能手机准备的,而智能机的主流系统是android、symbian和IOS。
⑧ 用Java怎么实现微信支付
具体方法步骤:
一、准备阶段:已认证微信号,且通过微信支付认证,这个可以看微信文档,很详细,这里就不再重复。

