- 浏览: 443022 次
- 性别:
- 来自: 苏州
最新评论
-
huguyue1988:
怎么样可以判断访问的音乐加载完成了呢?我的界面要加载多个这个的 ...
jPlayer的一些用法 -
永不悔你:
[color=yellow][/c[*][img][/img] ...
MyEclipse 9.0运行速度优化 -
tianyalinfeng:
这个教程里都有吧
jquery 筛选器 -
mengfei86:
你太牛了,我找了半天的问题,你一句代码搞定了,谢了,id^, ...
jquery 筛选器
文章列表
android 4.0上运行时报android.os.NetworkOnMainThreadException异常
原因在4.0中,访问网络不能在主程序中进行,有两个方法可以解决
一个是在主程序中增加:
Java代码
// 详见StrictMode文档
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectDiskReads()
.detectDiskWrites()
.detectNetwork() // ...
update sdk 时报错 a floder failed to be moved
直接去tools文件夹 运行 android.bat 进行升级
删除C:\Users\Administrator\Documents\default.rdp,再启动远程就好了
http://www.chahushequ.com/read-topic-94-2fa997443dffac07013e00e63d7d02bc-0-1-index-1.html
Log Mining
- 博客分类:
- SE
Users' behavior in a web browser can be categorized into two states, namely, the search state and the browse state.
Four types of data summarization that are widely used in log mining, namely, query histograms, click-through bipartites, click patterns, and session patterns.
Silvestri divi ...
保存one级联保存many
@OneToMany(mappedBy = "query")
@Cascade(value=CascadeType.SAVE_UPDATE)
@LazyCollection(value=LazyCollectionOption.FALSE)
private List<AttrDetail> attrDetails;
调用save(query), 所有的AttrDetail自动级联保存
maven结合junit配置
- 博客分类:
- Java
必须的配置
1. <testSourceDirectory>${basedir}/test</testSourceDirectory>
2.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version>
<configuration> ...
chrome安装不了
- 博客分类:
- Other
打开windows注册表
找到HKEY_CURRENT_USER\Software\Google\Update\Clients\{8A69D345-D564-463c-AFF1-A69D9E530F96},删除{8A69D345-D564-463c-AFF1-A69D9E530F96}中有安装的chrome版本信息。删除后就能正常安装了。
http://chahushequ.com/read-topic-94-2fa997443d9257a9013d94e9051103d5-0-1-index-1.html
struts2 标签输出html内容
- 博客分类:
- Struts
<s:property value="<b>xxx</b>"/> 输出<b>xxx</b>
<s:property escape="false" value="<b>xxx</b>"/> 输出xxx,并加粗
处理MP3相关工具包
- 博客分类:
- Java
解码转换
Xuggler http://www.xuggle.com/xuggler/ , 项目当前版本5.4,持续更新中。
Xuggler提供了利用Java来解压缩,修改和重新压缩任何媒体或流文件的最简单方式。
支持Maven,对不同的平台有不同的分发包,但也有一个大包类库,包含全部系统类库.
JLayer http://www.javazoom.net/javalayer/javalayer.html ,项目最后更新日期:2008-11-16.
JLayer是一个Java类库用来解码,转换,播放MP3文件.还有一个面向J2ME平台的JLayerME.
...
window.clipboardData.setData('Text','http://www.chahushequ.com/reg/input.bbscs?referrer=<s:property value="ui.userName"/>');
alert('\n此网址已在系统剪切板中!');
css等比例缩放图片
- 博客分类:
- Css
img{max-width:100px;max-height:100px;}img{min-width:100px;min-height:100px;}
.thumbImage {max-width: 100px;max-height: 100px;} /* for Firefox & IE7 */* html .thumbImage { /* for IE6 */width: expression(this.width > 100 && this.width > this.height ? 100 : auto);height: expres ...
<img usemap="#iconsmap" src="view2/images/images/icons.png"/>
<map name="iconsmap" id="iconsmap">
<area shape="rect" coords="10,10,30,30" href="http://www.chahushequ.com" target="_blank" alt="& ...
1. struts.xml中添加 <constant name="struts.ognl.allowStaticMethodAccess" value="true"></constant>
此步骤不一定需要
2. 调用 <s:text name="%{@com.laoer.bbscs.comm.BBSCSUtil@filterText(#note.noteContext,true,false,true)}"></s:text>
<script type="text/javascript">
//屏蔽右键菜单
document.oncontextmenu = function (event){
if(window.event){
event = window.event;
}try{
var the = event.srcElement;
if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == " ...
<div>
<marquee scrolldelay="100" direction="up" onmouseover="this.stop()" onmouseout="this.start()">
<p><a href="#">aaaaaaaaaa</a></p>
<p><a href="#">bbbbbbbbb</a></p>
<p ...