1
This commit is contained in:
@@ -302,8 +302,12 @@ public class InstructionServiceImpl implements IInstructionService {
|
|||||||
if (matcher.find()) {
|
if (matcher.find()) {
|
||||||
address = new StringBuilder(matcher.group());
|
address = new StringBuilder(matcher.group());
|
||||||
}
|
}
|
||||||
for (int i = 3; i < parts.length; i++) {
|
String phone = parts[3];
|
||||||
System.out.println(parts[i]);
|
//从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]);
|
address.append(parts[i]);
|
||||||
}
|
}
|
||||||
String jf = productWithJF.get(modelNumber);
|
String jf = productWithJF.get(modelNumber);
|
||||||
|
|||||||
Reference in New Issue
Block a user