UTF-8适用于食,但失败并远销罐子工作(UTF-8 works on Eclipse but fa

2019-06-27 10:51发布

我的工作与桌面应用程序Java Swing和上保存数据MySQL在阿拉伯语数据库使用UTF-8

当我运行从应用程序Eclipse一切工作得很好,但是当我完成我自己的工作导出到一个runnable jar使用Eclipse export ,没有任何与数据库相关的作品。

  • 登录不起作用
  • 当我尝试迄今保存到我的数据库Arabic我得到?????? 在数据库

然而,正如我前面提到的,一切都正常工作,当我从运行它Eclipse 。 任何一个可以帮助我,我一定送我的工作

这是我工作的一个示例:

这就是我如何连接连接我的数据库:

static Connection conn = null;
static String url      = "jdbc:mysql://localhost:3306/";
static String dbName   = "gestiondestock";
static String driver   = "com.mysql.jdbc.Driver";
static String userName = "root"; 
static String password = "";
static String unicode= "?useUnicode=yes&characterEncoding=UTF-8";

这是代码buttonLogin ActionPerformed

private void buttonLogin_ActionPerformed(ActionEvent e) {
    if(textField.getText().equals("") || passwordField.getText().equals(""))
    {
       jd =new JDialog();
        jd.applyComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
        jd.setTitle("الرجاء ملء الفراغ");
        jd.setVisible(true);
        jd.setLocationRelativeTo(null);
        jd.setSize(400,200);
        jd.setContentPane(buildpp());   
    }
    else{
        if(textField.getText().equals("Adel91") || passwordField.getText().equals("Adel91"))
        {
            CardLayout cardLayout = (CardLayout) contentPane.getLayout();
            cardLayout.show(contentPane, "Panel_Home");
        }
        else{
            try{
                String usernamena = new String(textField.getText());
                String passwordlogin = new String(passwordField.getText());

                MessageDigest mdEnc4 = MessageDigest.getInstance("MD5");

                mdEnc4.update(passwordlogin.getBytes(), 0, passwordlogin.length());
                String passwordlogindmd5 = new BigInteger(1, mdEnc4.digest()).toString(16); // Encrypted 

                try{
                    Class.forName(driver).newInstance();
                    conn = DriverManager.getConnection(url+dbName+unicode,userName,password);
                    Statement st = conn.createStatement();

                    ResultSet res = st.executeQuery("SELECT username,password FROM client ");

                    String user = null;
                    String pass = null;

                    if(res.next()) {
                        user = new String( res.getBytes(1), "UTF-8");
                        pass =  new String( res.getBytes(2), "UTF-8");
                    }

                    if(usernamena.equals(user)&&passwordlogindmd5.equals(pass)){
                        CardLayout cardLayout = (CardLayout) contentPane.getLayout();
                        cardLayout.show(contentPane, "Panel_Home");
                    }
                    else{
                        jd =new JDialog();
                        jd.applyComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
                        jd.setTitle("كلمة المرور والإسم غير مناسبان");
                        jd.setVisible(true);
                        jd.setLocationRelativeTo(null);
                        jd.setSize(430,200);
                        jd.setContentPane(buildwronglogin());
                    }
                } catch (Exception ee) {
                    ee.printStackTrace();
                }
            } catch (NoSuchAlgorithmException e1) {
                // TODO Auto-generated catch block
                e1.printStackTrace();
            } 
        }
    }   
}

导致使用该CMD的MySQL变量:SHOW VARIABLES LIKE 'C%'; ABD每变薄是uts8

Answer 1:

首先,你永远不应该将字符串转换为使用未指定字符集(在这里,你所使用的平台默认情况下,这可能会改变)字节:

passwordlogin.getBytes()

由于这是你要散列哪个字符集使用其实并不重要,只要它是一致的字节。 像passwordlogin.getBytes("UTF-8")似乎是合理的。

此外,这肯定是一个代码问题的位:

                if(res.next()) {
                    user = new String( res.getBytes(1), "UTF-8");
                    pass =  new String( res.getBytes(2), "UTF-8");
                }

这似乎暗示着你有一个字符集击穿地方。

最后,你是如何运行的罐子? 你在命令行指定一个字符集(例如java -Dfile.encoding="UTF-8" ... )。



Answer 2:

与启动它java -Dfile.encoding="UTF-8" -jar JarFile.jar



文章来源: UTF-8 works on Eclipse but fails to work with an exported jar