在电子商务网站上实现多国语言

liangzhian0620 2010-07-01
在电子商务网站,要求实现中、英、日、韩四国语言,有java进行开发,怎么实现最为便于管理?
dandan_5956 2010-07-01
具体采用的啥子框架?
liangzhian0620 2010-07-01
我们现在就是讨论,采用什么样的框架才能夠使管理更方法更灵活!
dandan_5956 2010-07-02
有Struts2这些框架国际化也只能做到局部的信息,页面的大部分内容还是要每个语言一个页面版本
SeanHe 2010-07-02
国际化并不是单纯的文字国际化了就可以的,最容易遇到的问题是你把文字做了从中文换成英文就会导致页面布局出现不美观的问题
liangzhian0620 2010-07-03
有没有什么比较好一些的语言翻译包,请帮忙推荐一下
jinyanhui2008 2010-07-04
说一下,以前做过一个电子商务网站,搞的就是全球化的电子商务,当时用的是struts1.2,现在可以考虑2了,其实国际化最重要的不是考虑界面的国家化,最重要的是要考虑数据库的国际化,你是根据不同语言切换不同的数据库呢,还是在一个数据库中管理多个语言要考虑好,还有就是电子商务网站最重要的是跟钱挂钩的,不同的语言显示的价钱是不一样的,这块也要考虑好,比如在英语国家是用美元结算中国用人民币等吧。
建议先考虑好数据库架构设计的问题。
liangzhian0620 2010-07-05
谢谢楼上这位的建议,我们现在数据库还没有确定是用不同的数据库还是同一个数据库,我们是考虑过用数据库这个问题,但如果是用不同的数据库的话,如果想添加一种语言的时候是不是就要改我们的程序呢?并且这样对管理员要求就比较的高需要会多国语言,对于发布一些信息审核批的时候领导也不一定能看懂,这也是一个问题吧
dandan_5956 2010-07-05
jinyanhui2008 写道
说一下,以前做过一个电子商务网站,搞的就是全球化的电子商务,当时用的是struts1.2,现在可以考虑2了,其实国际化最重要的不是考虑界面的国家化,最重要的是要考虑数据库的国际化,你是根据不同语言切换不同的数据库呢,还是在一个数据库中管理多个语言要考虑好,还有就是电子商务网站最重要的是跟钱挂钩的,不同的语言显示的价钱是不一样的,这块也要考虑好,比如在英语国家是用美元结算中国用人民币等吧。
建议先考虑好数据库架构设计的问题。

说到钱的国际化问题,以前在看Hibernate In Action里的示例程序竞拍caveatemptor,声明了一个MonetaryAmount,代码如下,value就是值,currency处理国际化,数据库表也不用特殊处理,示例程序里面也有支付方式的抽象,可以参考下
package auction.model;

import java.io.Serializable;
import java.math.BigDecimal;
import java.util.Currency;

/**
 * Represents a monetary amount as value and currency.
 * <p>
 * Has some illustrative and non-funtional money conversion magic.
 * @author Gavin King
 * @author Christian Bauer
 */
public class MonetaryAmount implements Serializable {

	private final BigDecimal value;
	private final Currency currency;

	public MonetaryAmount(BigDecimal value, Currency currency) {
		this.value = value;
		this.currency = currency;
	}

	public Currency getCurrency() {
		return currency;
	}

	public BigDecimal getValue() {
		return value;
	}

	// ********************** Common Methods ********************** //

	public boolean equals(Object o) {
		if (this == o) return true;
		if (!(o instanceof MonetaryAmount)) return false;

		final MonetaryAmount monetaryAmount = (MonetaryAmount) o;

		if (!currency.equals(monetaryAmount.currency)) return false;
		if (!value.equals(monetaryAmount.value)) return false;

		return true;
	}

	public int hashCode() {
		int result;
		result = value.hashCode();
		result = 29 * result + currency.hashCode();
		return result;
	}

	public String toString() {
		return "Value: '" + getValue() + "', " +
		        "Currency: '" + getCurrency() + "'";
	}

	public int compareTo(Object o) {
		if (o instanceof MonetaryAmount) {
            // TODO: This requires some conversion magic and is therefore not implemented
			return this.getValue().compareTo(((MonetaryAmount) o).getValue());
		}
		return 0;
	}

	// ********************** Business Methods ********************** //

	public static MonetaryAmount fromString(String amount, String currencyCode) {
		return new MonetaryAmount(new BigDecimal(amount),
								  Currency.getInstance(currencyCode));
	}

	public static MonetaryAmount convert(MonetaryAmount amount,
										 Currency toConcurrency) {
		// TODO: This requires some conversion magic and is therefore not implemented
		return new MonetaryAmount(amount.getValue(), toConcurrency);
	}

}
key232323 2010-07-13
恩,数据库 + 本地文件i18n,就差不多了
Global site tag (gtag.js) - Google Analytics