1.检查你的IE,高版本的IE不支持applet
2.不要用jsp:plugin,而在<html></html>中加入你的代码试试
<applet>
code="dxfdrawing.Applet1.class" codebase="."
width= "1120"
height= "680"           
</applet>
或者把你的applet class文件移至JSP同目录下,试一下以下代码,仍在<html></html>中嵌入
<applet>
code="Applet1.class"
width= "1120"
height= "680"           
</applet>