- 浏览: 23254 次
- 来自: ...
最新评论
文章列表
<configuration>
<genericCore>true</genericCore>
<!-- Set to false if you want Java files generated for your DAOs and Managers -->
<fullSource>false</fullSource>
<!-- Set to true if you've "full-sourced" your project and changed ...
- 2008-06-16 22:51
- 浏览 687
- 评论(0)
class_eval &&
- 博客分类:
- RUBY
class Foo1
end
def Foo1.foo
puts "foo"
end
class Foo2
def self.foo
puts "foo"
end
end
class Foo3
end
class << Foo3
def foo
puts "foo"
end
end
class Foo4
class << self
def foo
puts " ...
- 2008-04-02 11:53
- 浏览 728
- 评论(0)
<ul>
<li><a href="/">home</a></li>
<%=
s = ""
url = request.path.split('?') #remove extra query string parameters
levels = url[0].split('/') #break up url into different levels
levels.each_with_index do |level, index|
unless l ...
- 2008-04-01 13:47
- 浏览 1030
- 评论(0)
select:<wbr></wbr>
select(object, method, choices, options = {}, html_options = {})
在ActionView::Helpers::FormOptionsHelper中定义
object是一個實體化變數,這裡很明顯的就是要擺上model物件嘛!
method則是object的一個屬性,也是資料表中的對應欄位
choices就是要被選的選項,可以是陣列或者是雜湊(Hash)
options與html_options則是一些選項在這邊來舉個例子吧
<%= select( ...
- 2007-11-23 11:26
- 浏览 1030
- 评论(0)
把
xml 代码
format.date = {0,date,MM/dd/yyyy}
format.time = {0,date,MM/dd/yyyy ha}
format.percent = {0,number,##0.00'%'}
format.currency = {0,number,$##0.00}
加入 ApplicationResources*.properties 中
s:text name="format.date"
s:param value="per ...
- 2007-11-23 11:19
- 浏览 907
- 评论(0)
ruby 代码
class Enterprise < ActiveRecord::Base
# 当创建前调用auto_id 方法:
before_create :auto_id # auto_id通过调用empno_next方法设置name
def auto_id
self.name = empno_next
end
# 通过重数据库中读出最大的ID
# 但是如果是复合ID?下次解决。。(思路。。增加字段)
def empno_next ...
- 2007-11-23 11:04
- 浏览 1022
- 评论(0)
A.request.setCharacterEncoding("gb2312");
B.type = new String(type.getBytes("ISO8859-1"), "GB2312");
C.在Tomcat的配置文件Server.xml中的Connector标签中加入“URIEncoding=UTF-8”属性;
D.conf\web.xml 指定多个Encoding参数;
E.编写一个filter,处理Post提交的编码问题;
- 2007-11-23 10:56
- 浏览 1017
- 评论(0)
总的来说,如果你懒得想这些,采用下面的配置比较不错:
netbeans_default_options="-J-Xms32m -J-Xmx256m -J-XX:PermSize=32m -J-XX:MaxPermSize=160m -J-Xverify:none
-J-Dapple.laf.useScreenMenuBar=true -J-XX:+UseConcMarkSweepGC -J-XX:+CMSClassUnloadingEnabled
-J-XX:+CMSPermGenSweepingEnabled --fontsize 12"
- 2007-11-23 10:51
- 浏览 1140
- 评论(0)
-DproxySet=true -DproxyHost=69.147.76.64 -DproxyPort=80 -U
- 2007-11-23 10:50
- 浏览 775
- 评论(0)
<form name="checkform" method="post" action="getvalue.jsp">
你希望学习哪些程式语言:<br>
<input type="checkbox" name="langtype" value="JSP">JSP
<input type="checkbox" name="langtype&qu ...
- 2007-11-23 10:41
- 浏览 4470
- 评论(0)
String和Int之间的相互转化
- 博客分类:
- JAVA
String和Int之间的相互转化:
a1=Integer.parseInt(s1);
s1=Integer.toString(a1);
Object只能分步转换,先转换为string,然后通过Integer来转换成int类型
- 2007-11-23 10:39
- 浏览 1308
- 评论(0)
1、操作界面相关的中文问题
点击菜单File => Settings或快捷键(Crtl+Alt+S),在弹出的设置面板选择IDESetting => Appearance(在Appearance对话框中,将Font的Name设置为dialog.plain,然后保存。
2、编辑器里的中文问题
点击File => Settings或快捷键(Crtl+Alt+S),在弹出的设置面板选择Colors &Fonts(F)
在Colors & Fonts对话框中,在Scheme name的后右点击Save as...按钮,输入你想要的名称NewColorFont,创建一个 ...
- 2007-11-23 10:38
- 浏览 1330
- 评论(0)
request.getRemoteUser()
SecurityContext context = SecurityContextHolder.getContext();
----------------------------------------------------------------------------------------------------------------------------------------------------------------------
In order to log the user in automatically aft ...
- 2007-11-23 10:33
- 浏览 1224
- 评论(0)
基本语法
<marquee> ... </marquee> 移动属性的设置 ,这种移动不仅仅局限于文字,也可以应用于图片,表格等等
方向
<direction=#> #=left, right ,up ,down<marquee direction=left>从右向左移!</marquee>
<wbr></wbr>
方式
<bihavior=#> #=scroll, slide, alternate <marquee behavior=scroll>一圈一圈绕着走!</m ...
- 2007-11-23 10:29
- 浏览 984
- 评论(0)
在CSS中定义 table-layout:fixed .td {overfloew:hidden}
用%来定义宽度
增加 nowrap 属性
- 2007-11-23 10:25
- 浏览 1937
- 评论(0)