自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 收藏
  • 关注

原创 unity3d人物碰撞提示文字

碰撞体的子物体,例如3dObject-legacy-text。将脚本挂载在物体上,碰撞显示text。绑定代码,使文字一直正对屏幕(相机)设置碰撞体,例如cube。

2022-12-01 14:23:34 3117 1

原创 unity 多人漫游&多人游戏&人物移动

unity 多人漫游&多人游戏&人物移动。

2022-11-14 13:47:50 793

原创 spring-jar包 部署到docker-配置Dockerfile

spring-jar包 部署到docker-配置Dockerfile

2022-09-27 11:36:51 279

原创 python对excel单元格数据进行修改

from openpyxl import Workbookfrom openpyxl import load_workbookfile_home = r'D:\FP\FBST.xlsx'wb = load_workbook(filename=file_home) sheet_ranges = wb['检测管1']ws = wb['检测管1'] s=0for c in range(0,41): c+=1 print(sheet_ranges['a'+str(c)].va

2021-10-29 13:39:36 2272

原创 Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its

Error:Kotlin: Module was compiled with an incompatible version of Kotlin. The binary version of its metadata is 1.5.1, expected version is 1.1.16.近来写Java总是遇到这个问题,Build-rebuild project之后问题解决。具体原因未知,有同样问题的找到根源请指点一下。...

2021-06-04 11:10:10 38222 26

原创 java使用正则表达式matcher.find(),matcher.group()

import java.util.regex.Matcher; import java.util.regex.Pattern; public class GroupIndexAndStartEndIndexTest { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated meth

2020-10-19 15:04:13 1473

原创 基于POI,使用java处理Excel数据

pom文件 <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>3.12</version> </dependency>实例代码注意:写入数据后一定要workbook.writ

2020-10-14 11:17:03 105

原创 Java8关于Stream的基本使用

创建stream的几种方式:使用数组:Stream stm=Stream.of({“a”,“b”,“c”});Stream stm=Arrays.stream({“a”,“b”,“c”});使用集合:List list =new ArrayList();List.add("…");Stream stm =list.stream();demo:public static void main(String[] args) {List.of(" Apple ", " pear “, "

2020-09-23 17:22:56 195

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除