Рейтинг темы:
  • 0 Голос(ов) - 0 в среднем
  • 1
  • 2
  • 3
  • 4
  • 5
how can i add a language in overword codes
#1
how can i add a language : CHINESE("cn"),

in overword codes

always thanks


Код:
package l2p.gameserver.utils;

/**
* @author VISTALL
* @date 13:50/29.03.2011
*/
public enum Language
{
    CHINESE("cn"),
    ENGLISH("en"),
    RUSSIAN("ru");

    public static final Language[] VALUES = Language.values();

    private String _shortName;

    Language(String shortName)
    {
        _shortName = shortName;
    }

    public String getShortName()
    {
        return _shortName;
    }
}

run server then
throwexception in l2p.gameserver.data.htm.HtmCache.java

Код:
    public void clear()
    {
        for(int i = 0; i < _cache.length; i++)
        {
            _cache[i].removeAll();  // <-- nullpointerexception
        }
    }
Ответ
#2
iquelite Написал:
Код:
    public void clear()
    {
        for(int i = 0; i < _cache.length; i++)
        {
            _cache[i].removeAll();  // <-- nullpointerexception
        }
    }
[SRC="java"]
public void clear()
{
for(int i = 0; i < _cache.length; i++)
{
if(_cache[i] != null)
{
_cache[i].removeAll();
}
}
}
[/SRC]
Test.

UPD: If this is not heal npe, copy error, code HtmCache.java and Player.java (piece of code with the language variables)
Ответ
#3
L2CCCP Написал:[SRC="java"]
public void clear()
{
for(int i = 0; i < _cache.length; i++)
{
if(_cache[i] != null)
{
_cache[i].removeAll();
}
}
}
[/SRC]
Test.

tried you'll see another exception in line
_log.info(String.format("HtmCache: parsing %d documents; lang: %s.", c.getSize(), Language.VALUES[i]));

i do not know why get this exception
Ответ
#4
copy error, HtmCache.java and Player.java (piece code with the language variables)
Ответ
#5
Cache...lol...
ehcache.xml:
Код:
<!-- HtmCache -->
    <cache name="ru.ljts.gameserver.data.htm.HtmCache.RUSSIAN" eternal="true" memoryStoreEvictionPolicy="LRU" maxElementsInMemory="100000" overflowToDisk="false"/>
to add hereWink
Ответ
#6
KilRoy Написал:Cache...lol...
ehcache.xml:
Код:
<!-- HtmCache -->
    <cache name="ru.ljts.gameserver.data.htm.HtmCache.RUSSIAN" eternal="true" memoryStoreEvictionPolicy="LRU" maxElementsInMemory="100000" overflowToDisk="false"/>
to add hereWink
off
Ответ
#7
KilRoy Написал:Cache...lol...
ehcache.xml:
Код:
<!-- HtmCache -->
    <cache name="ru.ljts.gameserver.data.htm.HtmCache.RUSSIAN" eternal="true" memoryStoreEvictionPolicy="LRU" maxElementsInMemory="100000" overflowToDisk="false"/>
to add hereWink

Solved :db:
Ответ


Перейти к форуму:


Пользователи, просматривающие эту тему: 3 Гость(ей)