在html文件中引入jsp页面,有什么解决方案吗?

在html文件中引入jsp页面,有什么解决方案吗?,第1张

jsp对于js的加载时有顺序的,后加载会覆盖前加载。函数调用的时候不是在调用js文件,是调用加载后的函数。如果说出现了不兼容一版情况是后加载的js函数将前面加载的js函数覆盖了,每次执行均会报错,与调用速度没关系。解决方法是调整js文件加载顺序或解决函数冲突。

import java.io.*

import java.util.*

import org.jdom.*

import org.jdom.input.*

public class MyXMLReader2JDOM {

public static void main(String arge[]) {

long lasting = System.currentTimeMillis()

try {

SAXBuilder builder = new SAXBuilder()

Document doc = builder.build(new File("xmlcount.xml"))

Element foo = doc.getRootElement()

// List allChildren = foo.getChildren()

System.out.print( foo.getAttributeValue("month-count"))

System.out.println(foo.getAttributeValue("total-count"))

} catch (Exception e) {

e.printStackTrace()

}

}

}

补充:

System.out.print(foo.getChild("date").getText())

补充:

测试通过:

import java.io.*

import java.util.*

import org.jdom.*

import org.jdom.input.*

public class MyXMLReader2JDOM {

public static void main(String arge[]) {

try {

SAXBuilder builder = new SAXBuilder()

Document doc = builder.build(new File("D:/xmlcount.xml"))

Element foo = doc.getRootElement()

System.out.println("month-count : " + foo.getAttributeValue("month-count"))

System.out.println("total-count : " + foo.getAttributeValue("total-count"))

System.out.println("date : " + foo.getChild("date").getText())

} catch (Exception e) {

e.printStackTrace()

}

}

}

jsp不可以在html上打开。只能把html代码嵌套在jsp中,且文件的扩展名是.jsp。因把jsp嵌套在html中,html文件在浏览器中,只能显示html的代码,而jsp代码只能显示原型。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/6099567.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-14
下一篇 2023-03-14

发表评论

登录后才能评论

评论列表(0条)

保存