- 浏览: 358185 次
- 性别:
- 来自: 北京
最新评论
-
977616908:
UITableView每个cell之间的默认分割线如何去掉 -
zhijie_zhang:
,就这么简单。。。 不过还真行,不明白为什么不需要配jaa_ ...
mac下myeclipse做j2ee开发环境到搭建(tomcat) -
lianxianghui:
其实应该是 ableView.separatorStyle = ...
UITableView每个cell之间的默认分割线如何去掉 -
白色蜻蜓:
...
mac下myeclipse做j2ee开发环境到搭建(tomcat) -
jinchishuxue:
armywin 写道http://www.buildapp.n ...
收集的一些corana和Lua的材料
文章列表
public static String extractHyperlink(String desc) {
if (desc == null) {
return null;
}
// if there are bullet points we enforce a lower limit and just allow one line of <li/>
int pos = desc.indexOf("http://");
if (pos == -1 || (pos > 0 && (desc.charAt(pos - 1) ...
- 2009-08-06 16:34
- 浏览 1088
- 评论(0)
1、除了配置外,你应该写第一个jsp程序:
---------------------------------------------------------------------------------------------
<html> <head> <title>my first .jsp</title> </head> <body> <% out.println("hello world!<br>");//这里用html中的<br>换行 out.pr ...
- 2009-02-28 15:02
- 浏览 779
- 评论(0)
1、转上后将conf文件夹中的server.xml文件打开,将里面的port:8080改为80(若装了. net可能会出现错误)。
2、 建一个文件夹,比如说在f:\myweb,再在myweb里面建一个WEB-INF文件夹。这样就有了
f:\myweb\WEB-INF
3、将C:\Program Files\Tomcat 6.0\webapps\ROOT\WEB-INF里面的web.xml复制到
f:\myweb\WEB-INF中。
4、将conf文件夹中的server打开,在</Host>之前加上
<Context path="/te ...
- 2009-02-28 14:36
- 浏览 1153
- 评论(0)