我的代码位于main.gsp
文件
<%@ page import="com.somethingToImport"%>
NetBeans给了我一个错误:expecting EOF, found 'import' @ line 1, column 20
我认为这导致我的应用程序在IE中崩溃。我该怎么做才能解决这个问题?
答案 0 :(得分:1)
这应该有助于IE问题,但不会修复NetBeans抱怨。尝试在GSP的第一行中包含DOCTYPE
。
示例:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<%@ page import="com.somethingToImport" %>
<html xmlns="http://www.w3.org/1999/xhtml">
注意:我在导入和'%'
之间添加了一个空格