package org.wicket.demo.hello;
import wicket.protocol.http.WebApplication;
public class HelloWorldApplication extends WebApplication {
public Class getHomePage() {
return HelloWorldPage.class;
}
}
在java中写完这个代码后点击保存,但是弹出个窗口
           Save could not be completed
           Reason
           Some characters cannot be mapper using"GBK"character enconding.
           Either change the enconding or remove the characters which are
           not supported by the"GBK"character encoding.
但是把GBK改成别的以后还是不行
这是怎么回事?