try it after adding this code to your webpack.config.js
{
test: /(\.css|\.scss)$/,
loader: 'style-loader!css-loader?sourceMap&modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!sass-loader?sourceMap'
}
我想将此循环转换为JAVA循环...
答案 0 :(得分:0)
也许是这样的
public String epwd(String pwd) {
pwd = pwd.toUpperCase();
String epwd = "";
int i;
for (i=0; i < pwd.length(); i++) {
epwd = epwd + ((char)(pwd.charAt(i) + 7));
}
return epwd;
}