【我的笔记】我的Windows

时间:2022-12-11 06:26:09

Kindle阅读软件
下载地址:https://www.amazon.cn/gp/digital/fiona/kcp-landing-page/ref=klp_mn

protobuf文件的编译命令

终端命令:
+---------------------------Java---------------------------------------+
D:\ServerWork\MyGame\protobuf>protoc.exe --java_out=./ Player.proto
+------------------------------------------------------------------+
+---------------------------C#---------------------------------------+
protogen -i:test.proto -0:test.cs -ns:MyProtoBuf
-i指定了输入,-o指定了输出,-ns指定了生成代码的namespace
D:\Game Server\Protobuf\ProtoGen>protogen -i:Person.proto -o:Person.cs -ns:Packets
+------------------------------------------------------------------+

查找和Kill进程

终端命令:
+---------------------------查找进程---------------------------------------+
C:\Users\liulongling>netstat -ano|findstr 8888
+------------------------------------------------------------------+
+---------------------------杀死进程---------------------------------------+
taskkill -PID 10024 -F
+------------------------------------------------------------------+