0

私のページには、ユーザーが自分の情報を編集できるテキストボックスがいくつかあります。そのファイルのコードは次のとおりです。

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:f="http://xmlns.jcp.org/jsf/core">
<h:head>
    <title>Facelet Title</title>
</h:head>
<h:body>
    <h:form>
        <h1>Kişisel Bilgileri Değiştir</h1>
        <h:panelGrid columns="4" >
            <h:outputText value="Kullanıcı Adı: "></h:outputText>
            <h:inputText  style=" background-color: #DCDAD1; " id="tUserName" readonly="true" value="#{user.customer.username}" />
            <h:outputText style="color: red" value="*Kullanıcı adı değiştirilemez" ></h:outputText>
            <h:outputText></h:outputText>
            <h:outputText id="tPassword" value="Şifre: "></h:outputText>
            <h:inputText id="passwordInputText" required="true"
                         requiredMessage="*Şifre bilgisi zorunludur"
                         value="#{user.customer.password}" />
            <h:outputText></h:outputText><h:outputText></h:outputText>         
            <h:outputText id="tName" value="Ad: "></h:outputText>
            <h:inputText id="nameInputText" required="true"
                         requiredMessage="*İsim bilgisi zorunludur"
                         value="#{user.customer.name}" />
            <h:outputText></h:outputText>
            <h:outputText></h:outputText>
            <h:outputText id="tSurName" value="Soyad: "></h:outputText>
            <h:inputText id="surnameInputText" required="true"
                         requiredMessage="*Soyad bilgisi zorunludur"
                         value="#{user.customer.surname}" />
            <h:outputText></h:outputText><h:outputText></h:outputText>
            <h:outputText id="tPhone" value="Telefon: "></h:outputText>
            <h:inputText id="phoneInputText" required="true" 
                         requiredMessage="*Telefon bilgisi zorunludur"
                         value="#{user.customer.phone}" />
                     <!--    validatorMessage="*Örnek:+902123475671">
                         <f:validateRegex pattern=
                             "\+[0-9]{12}" /> 
            </h:inputText>-->
            <h:outputText></h:outputText>
            <h:outputText id="tAddress" value="Adres: "></h:outputText>
            <h:inputTextarea rows="5" id="addressInputText" value="#{user.customer.address}" />
            <h:outputText></h:outputText><h:outputText></h:outputText>
            <h:outputText id="tEmail" value="E-mail: "></h:outputText>
            <h:inputText id="emailInputText" required="true"
                         requiredMessage="*E-mail bilgisi zorunludur"
                         value="#{user.customer.email}"
                         validatorMessage="*E-mail formatı yanlış">
                         <f:validateRegex pattern=
                             "\w+([-+.']\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*" />
            </h:inputText>
                <h:outputText></h:outputText><h:outputText></h:outputText>


                <h:commandButton value="Onayla" action="#{user.editInfo()}">
                </h:commandButton> 
        </h:panelGrid>
    </h:form>
</h:body>
</html>

私はphpmyadminとmysqlを使用しています。ここに私のテーブルがあります:

ここに画像の説明を入力

しかし、Ö、Ç、İ、Ğ、Ü、Ş などの文字をテキスト ボックスに入力してデータベースを更新すると、ã?Ä?İıÅ?Å?ã?ã§ã? などの奇妙な文字が表示されます。だ。どうすればこれを修正できますか? 照合として utf8_bin と utf8turkish_ci を試しましたが、うまくいきません。誰でも助けることができますか?

ありがとう

編集:ここで、新しいユーザー入力でデータベースを編集します:

 /*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package classes;

import java.io.Serializable;
import java.sql.Connection;
import java.sql.PreparedStatement;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.SessionScoped;
import javax.faces.context.FacesContext;

/**
 *
 * @author SUUSER
 */


@ManagedBean(name = "user")
@SessionScoped
public class User implements Serializable {

public static Customer customer;
private Connection con=null;
public void setCustomer(Customer customer) {
    User.customer = customer;
}

public Customer getCustomer() {
    return customer;
}

public User() {
}

public void editInfo() {
    String name = customer.getName(), surname = customer.getSurname(), password = customer.getPassword();
    String phone = customer.getPhone(), address = customer.getAddress(), email = customer.getEmail();


    try {
        con=DBConnect.connect();
        int result = -1;
        PreparedStatement checkDB = (PreparedStatement) con.prepareStatement(
                "UPDATE users set password=?,name=?,surname=?,phone=?,address=?,"
                + "email=? where username=?");
        checkDB.setString(7, customer.getUsername());
        checkDB.setString(1, password);
        checkDB.setString(2, name);
        checkDB.setString(3, surname);
        checkDB.setString(4, phone);
        checkDB.setString(5, address);
        checkDB.setString(6, email);
        result = checkDB.executeUpdate();
        con.close();
        FacesContext.getCurrentInstance().getExternalContext().redirect("editsuccesfull.xhtml");

    } catch (Exception e) {
        e.printStackTrace();
    }

}
}
4

2 に答える 2

-1

ユーザー名にUTF-8文字セットを使用できるようにしているときに、実際に同様の問題が発生しました。

最初のステップでは、フォーム コードに次を追加します。

accept-charset="utf-8"

accept=charset フォーム属性に

2 番目のステップは、php ヘッダーを追加することです

header("Content-type: text/html; charset=utf-8");

ここで、処理中のphpファイルにヘッダーを再度追加する必要があります

header("Content-type: text/html; charset=utf-8");

データベース情報の使用を選択する前に

mysql_set_charset('utf8');

そこから動作するはずです..これはUTF8なので、トルコ語のような下位の文字セットに変更したい場合は、トルコ語のエンコーディングを入力してください..

編集:これはPHP、HTMLにあります。したがって、うまくいけば、ASP.NET の正しい方向に導くことができます。

于 2013-07-04T14:31:02.680 に答える