1. 概述一般来说,在代码中跳转,离不开 ctags。实际上,vim 中代码跳转是由 vim tags 模块完成的,tags 模块依赖于 tags 文件。ctags(Generate tag files for source code) 是产生 tags 文件的。tags 文件只包含了函数、类、变量...
分类:
其他好文 时间:
2014-07-12 00:11:55
阅读次数:
304
本节我们一起来学习如何列出所有可用的标签,如何新建标签,以及各种不同类型标签之间的差别。 列显已有的标签 直接运行git tag即可: 可以用特定的搜索模式列出符合条件的标签。在 Git 自身项目仓库中,有着超过 240 个标签,如果你只对 1.4.2 系列的版本感兴趣,可以运行下面的命令: $ g...
分类:
其他好文 时间:
2014-07-11 23:58:58
阅读次数:
300
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
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
当我们在保存表单内容时,如果其中有一项内容包含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