Skip to content

Instantly share code, notes, and snippets.

View just-a-stone's full-sized avatar

shield just-a-stone

  • shanghai
View GitHub Profile
@just-a-stone
just-a-stone / config.json
Created January 30, 2023 15:14 — forked from tanpengsccd/config.json
v2ray服务端 json 配置 文件
{
"log": {
"access": "/var/log/v2ray/access.log",
"error": "/var/log/v2ray/error.log",
"loglevel": "warning"
},
"inbound": { //理论最安全的方式 ws,有条件加上TLS
"port": 20080, //开启的端口,建议实用caddy加上TLS加密
"protocol": "vmess",
@just-a-stone
just-a-stone / ReadExcelFile.java
Created January 16, 2019 11:43 — forked from madan712/ReadExcelFile.java
Java - Read excel file with blank cells
import java.io.FileInputStream;
import java.io.InputStream;
import java.util.Iterator;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Row;