几个问题如下,向各位虚心请教,希望各位不要因为问题菜就不回答了^^:
(1)   eclipse添加快捷键时 两组快捷键同时表示一个动作?比如alt+/这个快捷键,我想把它改成其他的,但是又不想覆盖它,想让两组快捷键同时存在,该如何修改?我试验过add但是不行,在jbuild中是可以的,有这个功能,eclipse呢?
(2)   eclipse中格式化编码后 所有的变量在定义初始化时 都是隔行分开的  如下:
=======================
static intnumberLines= 0;static Stringindentation= "";static StringdisplayText[]= new String[1000];static booleandisplayBoolean;static StringfindNode;========================如何修改让它格式化后是不隔行分开?如下:(另,各位代码格式化这些定义变量时习惯的方式是?)========================
        static intnumberLines= 0;
static Stringindentation= "";
static StringdisplayText[]= new String[1000];
static booleandisplayBoolean;
static StringfindNode;========================
(3)   eclipse如何调试jsp页面获得的数据?以及通过js弹出窗口的乱码问题
  我在jsp页面中通过如下代码传送数据
================================
<input type=button VALUE="修改信息"
style="background-color: #FFFFFF; border: 1 solid #B3D9FF; padding: 0"
target="modifyuser"
onclick="javascript:window.open('modifyUser.do?userID=<bean:write name='element' property='id'/>&username=<bean:write name='element' property='username'/>',
  
================================
modifyUser.do 转向modify.jsp在这个弹出页面中的数据都是中文乱码
我在modify.jsp页面中的这句<td>用户名:</td>
<td><input type="text" name="username" value=<%=request.getParameter("username")%>></td>
加断点想看下 request.getParameter("username") 的数据 却无法正常debug,请问各位jsp页面如何有效的debug?以及这里产生乱码的原因是什么?(确保数据库中无乱码,读出数据也print了,没有乱码,SetCharacterEncodingFilter.java也正确配置了,保证servlet正确过滤了,其他页面均无乱码)
(4)在用Tiles模版时碰到一个比较头疼的问题,就是Tiles出错后如何查错纠错的问题,比如内嵌的其中一个body页面少了一个</td>就无法正常显示了,屏幕就一片空白,控制台也没有任何提示,请问各位如何有效的发现问题所在呢?