摘要:
eclipse 它无法自动部署到tomcat上。而通常如果自动放到Web-Inf下就可以,如何解决这个问题?也就是:lib不在web-inf下,如何使它能自动部署到tomcat?1.解决方法在项目project下 classpath替换成2.解决办法右键点击工程,属性(properties),选择deployment assembly选项,单击add按钮,如下图:在弹出的对话框选择java build path entriesnext后会出现你加的jar包可以参考http://dev-song.iteye.com/blog/1290639 阅读全文
摘要:
Ctrl+1 快速修复(最经典的快捷键,就不用多说了)Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加)Ctrl+Alt+↑ 复制当前行到上一行(复制增加)Alt+↓ 当前行和下面一行交互位置(特别实用,可以省去先剪切,再粘贴了)Alt+↑ 当前行和上面一行交互位置(同上)Alt+← 前一个编辑的页面Alt+→ 下一个编辑的页面(当然是针对上面那条来说了)Alt+Enter 显示当前选择资源(工程,or 文件 or文件)的属性Shift+Enter 在当前行的下一行插入空行(这时鼠标可以在当前行的任一位置,不一定是最后)Shift+Ctrl+Enter 在当前行插 阅读全文
摘要:
using System; using System.Windows.Forms; using System.Drawing; using System.Drawing.Printing; public class Form1 : Form {//实现C#打印窗体 private Button printButton = new Button(); private PrintDocument printDocument1 = new PrintDocument(); public Form1() { printButton.Text = "Print Form"; prin 阅读全文