1传统标签接口关系: 2功能简介 3代码测试 1.标签体内容控制 StartTagpackage com.tag;import javax.servlet.jsp.Js...
分类:
Web程序 时间:
2014-07-09 15:07:00
阅读次数:
304
先上效果图:
先写一个Volley的请求的类:
public class GetDataViaVolley {
private static final String TAG = "ValleyTest";
private StringEntity mEntity = null;
private Listener mListener;
private Conte...
分类:
移动开发 时间:
2014-07-09 10:56:54
阅读次数:
230
1、文件大小格式化:
Log.d(TAG, Formatter.formatFileSize(this, 100));
//100 B
Log.d(TAG, Formatter.formatFileSize(this, 1024*2));
//2.00 KB
Log.d(TAG, Formatter.formatFileSize(this, 10000000));
//9...
分类:
移动开发 时间:
2014-07-09 10:53:37
阅读次数:
340
如果标签打错了,也可以删除:$ git tag -d v0.1Deleted tag 'v0.1' (was e078af9)因为创建的标签都只存储在本地,不会自动推送到远程。所以,打错的标签可以在本地安全删除。如果要推送某个标签到远程,使用命令git push origin tagname:$ g...
分类:
其他好文 时间:
2014-07-08 22:15:30
阅读次数:
213
在Git中打标签非常简单,首先,切换到需要打标签的分支上:$ git branch* dev master$ git checkout masterSwitched to branch 'master'然后,敲命令git tag name就可以打一个新标签:$ git tag v1.0可以用命令g....
分类:
其他好文 时间:
2014-07-08 22:12:20
阅读次数:
227
- (void)savePhotoToAlbum
{
ZoomScrollView *zoomScrollView = (ZoomScrollView*)[self.scrollView
viewWithTag:BEGIN_TAG_FOR_IMAGE+self.currentImagePage];
dispatch_async(dispatch_get_global_que...
分类:
移动开发 时间:
2014-07-08 19:34:27
阅读次数:
417
1、错误描述
java.lang.IllegalArgumentException:Can not find a java.io.InputStream with the name [inputStream] in the invocation stack.
Check the tag specified for this action
2、错误原因
3、解决办法...
分类:
其他好文 时间:
2014-07-08 18:33:04
阅读次数:
237
Bootloader:u-boot.2009.08分析与移植
4.1:分析u-boot根目录下的Makefile,可以看到uboot编译的顺序如下,由此可知编译执行的第一个文件是cpu/$(CPU)/start.o,又由于是基于arm920t架构的,所以去分析cpu/arm920t/start.S源文件。
# U-Boot objects....order is important (i.e....
分类:
其他好文 时间:
2014-07-08 15:34:46
阅读次数:
151
当我们在保存表单内容时,如果其中有一项内容包含Html的tag时,系统会报如下错误:A potentially dangerous Request.Form value was detected from the client xxxxxxxxxxxx要让程序绕开这个检验,我们可以在Model类中的...
分类:
Web程序 时间:
2014-07-08 11:53:27
阅读次数:
179
一.WEB-INFO下的*.tld自定义标签描述文件PAFTaglib.tld<?xmlversion="1.0"encoding="UTF-8"?><taglibxmlns="http://java.sun.com/xml/ns/javaee"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://java.sun.com/xml/ns/javaeehttp://..
分类:
Web程序 时间:
2014-07-08 10:03:44
阅读次数:
246