java 部分隱藏字段

2021-09-07 06:53:24 字數 568 閱讀 2697

專案中,很多時候要對資料作隱私保護,隱藏一些資料的關鍵資訊,比如身份證,隱藏其中的出生年月

//

利用正規表示式匹配替換字串

string email = "[email protected]";

pattern p = pattern.compile("(\\w)(\\w+)(\\w)");

matcher m =p.matcher(email);

system.out.println(m.replaceall("$1***$3"));

email = "you";

string aa="";

for (int i=0;i)

string pa="$1"+aa+"$3";

system.out.println(email.replaceall(regex, pa));

return

null;

乙個很好的補齊*號的方法

system.out.println(stringutils.rightpad("", 10, "*"));//輸出10個*號

隱藏字段技術

隱藏字段技術 report z neil 0412 test tables spfli.tables sflight.start of selection.skip.表頭uline at 91 write sy vline,15 航線承運人 sy vline,15 航班連線 uline at 91 ...

json過濾部分字段

public string queryalltrades 此處是亮點,只要將所需忽略欄位加到陣列中即可,在實際測試中,我發現在所返回陣列中,存在大量無用屬性,如 ratepersonals channelpersonals 那麼也可以將這兩個加到忽略陣列中.jsonarray jsonarr jso...

Django Model 字段部分詳解

django提供了乙個抽象層 model 來構建和管理web應用程式的資料。django中遵循 code frist 的原則,即 根據 中定義的類來自動生成資料庫表。1.建立表 a 基本結構 from django.db import models class userinfo models.mod...