
java
my_web_advanced
这个作者很懒,什么都没留下…
展开
-
json格式字符串
json格式json字符串格式原创 2022-06-23 14:30:20 · 196 阅读 · 0 评论 -
the bind value at index 1 is null
报错原因: 在数据库中查name为name1的数据 但是name1忘了赋值,为空原创 2021-04-19 14:43:46 · 1057 阅读 · 0 评论 -
java中获取列表中对象的属性
有一个列表,里面是GraphicItem对象,还有一个是名称的集合set,现在想过滤掉list里面的对象,只要set中有, list里面就不要 List<GraphicItem> graphicItemList = list.stream() .filter(graphicItem -> !set.contains(graphicItem.getGraphicId())) .collect(Collectors.toList());原创 2021-03-19 13:20:54 · 387 阅读 · 0 评论 -
Android Switch控件修改样式
1.布局 <Switch android:id="@+id/activity_setupswitch" android:layout_width="55dp" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true转载 2020-10-21 17:17:48 · 272 阅读 · 0 评论