-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCodigo.java
36 lines (29 loc) · 973 Bytes
/
Codigo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.aed.soft.matrix;
import java.util.ArrayList;
import java.util.Random;
/**Essa classe será responsavel por gerar todo codigo que roda ma matrix*/
public class Codigo {
/**Esse metodo gera apenas uma letra que vai compor a sequencia de x dgitos para o codigo
* da matrix*/
private String char_generator() {
Codex codex = new Codex();
Random r = new Random();
String str = codex.getCode();
char caractere = str.charAt(r.nextInt(str.length()));
return String.valueOf(caractere);
}
public String lineCodeGeneration() {
int[] tamanhos = {10,20,30,40,55,68,78,92,125};
Random r = new Random();
ArrayList<String>novo = new ArrayList<>();
novo.clear();
int max = tamanhos[r.nextInt(tamanhos.length)];
for(int i = 0;i<=max;i++) {
novo.add(char_generator());
}
String word = novo.toString();
word = word.substring(1,word.length()-1);
word = word.replace(",","");
return word;
}
}