1
This commit is contained in:
@@ -302,8 +302,12 @@ public class InstructionServiceImpl implements IInstructionService {
|
||||
if (matcher.find()) {
|
||||
address = new StringBuilder(matcher.group());
|
||||
}
|
||||
for (int i = 3; i < parts.length; i++) {
|
||||
System.out.println(parts[i]);
|
||||
String phone = parts[3];
|
||||
//从phoneWithTF随机拿一个出来
|
||||
phone = phoneWithTF.get(new Random().nextInt(phoneWithTF.size()));
|
||||
address.append(phone);
|
||||
System.out.println(address);
|
||||
for (int i = 4; i < parts.length; i++) {
|
||||
address.append(parts[i]);
|
||||
}
|
||||
String jf = productWithJF.get(modelNumber);
|
||||
|
||||
Reference in New Issue
Block a user