我正在创建一个Web应用程序,它需要使用jar或类文件中的Java Object。如何桥接我的Java类和JavaScript? (我对JavaScript和Web开发一般都很陌生。)
(我在这个主题中获得的大多数搜索结果来自那些没有意识到Java和JavaScript彼此无关的人。这不是这种情况。)
我想要完成的事情:
PropertiesEditor对象首先加载属性文件模板,然后将属性拆分为ArrayList。然后在网页上为每个属性生成一个表单,并允许用户编辑值并使用新文件名提交。然后将值传递给PropertiesEditor对象,并创建属性文件,并与其他属性文件一起保存。此Web应用程序将允许非编程用户从现有模板创建新的属性文件;在我的案例中,文本语言的本地化。
Java类:
public class PropertiesEditor {
private File propertiesFile;
private ArrayList<Property> propertyList;
private Scanner scan;
/**
*
*/
public void load(String fileName) {
try {
propertiesFile = new File(fileName);
scan = new Scanner(propertiesFile);
} catch (FileNotFoundException e) {
e.printStackTrace();
}
propertyList = new ArrayList<Property>();
try{
while (scan.hasNext()){
String string = scan.nextLine();
if (!(string.startsWith("#"))){
String[] array = string.split("=");
String key = array[0];
String value = array[1];
Property property = new Property(key, value);
propertyList.add(property);
}
}
}catch (NoSuchElementException nse){
}
}
public void save(String fileName){
Properties properties = new Properties();
for (Property current : propertyList){
properties.setProperty(current.getKey(), current.getValue());
}
try {
File file = new File(fileName + ".properties");
FileOutputStream fileOut = new FileOutputStream(file);
properties.store(fileOut, fileName);
fileOut.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public int getNumberOfProperties(){
return propertyList.size();
}
public String getPropertyKey(int index){
return propertyList.get(index).getKey();
}
public String getPropertyValue(int index){
return propertyList.get(index).getValue();
}
public void setPropertyValue(int index, String value){
propertyList.get(index).setValue(value);
}
}
我认为JavaScript看起来应该如何:
<script type='text/javascript'>
var pe = <PropertiesEditorObject>;//Obviously where I want to create the Java Object
pe.load("en-us.properties");
function formValidator(){
for (i=0;i<pe.getNumberOfProperties();i++){
var current = document.getElementById(i);
pe.setPropertyValue(i, current);
}
pe.save(document.getElementById('fileName');
}
function createForm(){
document.write("<form onsubmit='return formValidator()' >")
for (i=0;i<pe.getNumberOfProperties();i++){
document.write( pe.getPropertyValue(i) + "<input type='text' id='" + i + "' /><br />"
}
document.write("Properties File Name: <input type='text' id='fileName' /><br /><input type='submit' value='Check Form' /><br /></form>");
}
</script>
答案 0 :(得分:1)
了解GWT及其RPC方法,以了解您尝试的复杂性。通常,Javascript代码无法访问Java对象。它们在不同机器上的不同进程上运行在不同的VM上。
答案 1 :(得分:1)
我是一个java开发人员,所以我不能以任何特异性回答你的问题,但要记住JavaScript是在客户端(用户的浏览器)的上下文中运行的。因此,即使在技术上可行的做你正在做的事情(并且我认为不是,出于某些明显的原因),类/ jar /其他资源需要在远程用户的系统上。
JSP和适当的应用程序服务器可以缩小差距。属性文件保留在服务器上,JSP可用于修改它。