`
文章列表
android:layout_above="@id/xxx" --将控件置于给定ID控件之上 android:layout_below="@id/xxx" --将控件置于给定ID控件之下 android:layout_toLeftOf="@id/xxx" --将控件的右边缘和给定ID控件的左边缘对齐 android:layout_toRightOf="@id/xxx" --将控件的左边缘和给定ID控件的右边缘对齐 android:layout_alignLeft="@id ...
第一类:属性值为true或false android:layout_centerHrizontal 水平居中 (Hrizontal表示水平) android:layout_centerVertical 垂直居中 (Vertiacl表示垂直) android:layout_centerInparent 相对于父元素完全居中 android:layout_alignParentBottom 贴紧父元素的下 ...
@Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //加载activity setContentView(R.layout.activity_main); //根据id获取按钮 Button button = (Button) findViewById(R.id.MyButtinon); //设置按钮标题 button.setText("wo de button"); //根 ...
//1、一个activityView对应一个activity类! //2、这个类需要继承来自SDK的activity类!并且要是想onCreate接口! //3、每个activity都需要在androidManifest.xml文件当中进行配置! //4、手机桌面可见的都是在activity当中加入的各种组件!

java 读取text文件

    博客分类:
  • java
/** * 功能:Java读取txt文件的内容 * 步骤:1:先获得文件句柄 * 2:获得文件句柄当做是输入一个字节码流,需要对这个输入流进行读取 * 3:读取到输入流后,需要读取生成字节流 * 4:一行一行的输出。readline()。 * 备注:需要考虑的是异常情况 * @param filePath */ public static void readTxtFile(String filePath){ try { String encoding=&q ...
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> <c:if test="${fn:length(productList) == 1}"> </c:if>

获取文件大小

    博客分类:
  • java
public static void main(String[] args) { File f= new File("D:\\CentOS-6.5-x86_64-bin-DVD1.iso"); if (f.exists() && f.isFile()){ logger.info(f.length()); }else{ logger.info("file doesn't exist or is not a file& ...

C标签if else

    博客分类:
  • jsp
<c:choose> <c:when test=""> 如果 </c:when> <c:otherwise> 否则 </c:otherwise> </c:choose>

jquery滚动加载

$(document).ready(function() { function productLazy(){ addContent(); } $(document).ready(function() { $(window).scroll(function () { var scrollTop = $(this).scrollTop(); //滚动条距离顶部窗口的距离 var scrollHeight = $(do ...
boolean str = aaa.contains("b"); //返回布尔类型

java中list去重

    博客分类:
  • java
如果用Set ,倘若list里边的元素不是基本数据类型而是对象, 那么请覆写Object的boolean equals(Object obj) 和int hashCode()方法. return new ArrayList(new HashSet(list));   方法一:循环元素删除 // 删除ArrayList中重复元素 1 2 3 4 5 6 7 8 9 10 public static void removeDuplicate(List list) { for ( int i = 0 ; ...
var root = $('#tt').tree('getRoot'); $('#tt').tree('uncheck',root.target);

Div居中

    博客分类:
  • CSS
一、单行垂直居中 如果一个容器中只有一行文字,对它实现居中相对比较简单,我们只需要设置它的实际高度height和所在行的高度line-height相等即可。 如: div { height:25px; line-height:25px; overflow:hidden; } 这段代码很简,后面使用overflow:hidden的设置是为了防止内容超出容器或者产生自动换行,这样就达不到垂直居中效果了
//listproductSn 是一个list,其存储函数IN所需的条件 select * from A where 1=1 AND product_sprotType IN <foreach collection="listproductSn" item="item" index="index" open="(" separator="," close=")"> #{item} </foreach>

c:if 判断是否为空

    博客分类:
  • jsp
<c:if test="${empty str}"> str为空</c:if> <c:if test="${not empty str}"> str不为空</c:if>
Global site tag (gtag.js) - Google Analytics