This repository was archived by the owner on Jul 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
158 lines (132 loc) · 4.22 KB
/
Main.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
package main;
import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
boolean fromHex = false;
boolean prefixHex = false;
boolean fromBinary = false;
for (String argument : args) {
if (argument.equalsIgnoreCase("-prefix-hex")) {
prefixHex = true;
} else if (argument.equalsIgnoreCase("-help")) {
System.out.println("-prefix-hex: Prefixes the hex codes with \"0x\"");
System.out.println("-fromHex: Converts from hex to Text");
System.out.println("-fromBinary Converts from Binary to Text");
System.out.println("This Utility converts a Sequence of Characters to binary, hexadecimal and decimal");
System.out.println("Type \"exit\" to exit this program");
} else if (argument.equalsIgnoreCase("-fromBinary")) {
fromBinary = true;
} else if (argument.equalsIgnoreCase("-fromHex")) {
fromHex = true;
} else {
System.out.println("Unknown: " + argument);
}
}
Scanner s = new Scanner(System.in);
if (fromBinary) {
while (true) {
System.out.print("Eingabe: ");
String string = s.nextLine().replaceAll(" ", "");
if (string.equalsIgnoreCase("exit")) {
s.close();
System.exit(0);
}
List<String> list = splitIntoDamnPieces(8, string);
int[] ints = new int[list.size()];
char[] chars = new char[list.size()];
List<String> hex = new ArrayList<String>();
String result = "";
for (int i = 0; i < list.size(); i++) {
ints[i] = Integer.parseInt(list.get(i), 2);
chars[i] = (char) ints[i];
if (prefixHex) {
hex.add("0x" + Integer.toHexString(ints[i]) + " ");
} else {
hex.add(Integer.toHexString(ints[i]) + " ");
}
string += chars;
}
System.out.println("Normal:" + result);
System.out.print("Hex: ");
hex.forEach(System.out::print);
System.out.println();
System.out.print("Zahlencodes: ");
for (int i2 : ints) {
System.out.print(i2 + " ");
}
System.out.println("\n");
}
} else if (fromHex) {
//From Hexadecimal
while (true) {
System.out.print("Eingabe: ");
String string = s.nextLine().replaceAll(" ", "").replaceAll("0x", "");
if (string.equalsIgnoreCase("exit")) {
s.close();
System.exit(0);
}
List<String> list = splitIntoDamnPieces(2, string);
int[] ints = new int[list.size()];
char[] chars = new char[list.size()];
List<String> bin = new ArrayList<String>();
for (int i = 0; i < list.size(); i++) {
ints[i] = Integer.parseInt(list.get(i), 16);
chars[i] = (char) ints[i];
bin.add(Integer.toBinaryString(ints[i]));
}
String result = new String(chars);
System.out.println("Normal:" + result);
System.out.print("Zahlencodes: ");
for (int i2 : ints) {
System.out.print(i2 + " ");
}
System.out.println();
System.out.println("Binär: ");
for (String bina : bin) {
System.out.print(bina);
}
System.out.println("\n");
}
} else {
while (true) {
System.out.print("Eingabe: ");
String string = s.nextLine();
String[] parts = string.split("");
String binary_String = "";
String hex_String = "";
for (String part : parts) {
char c = part.toCharArray()[0];
int ascii_dec = c;
String hex = Integer.toHexString(ascii_dec);
String bin = "0" + Integer.toBinaryString(ascii_dec);
binary_String += bin + " ";
if (prefixHex) {
hex_String += "0x" + hex + " ";
} else {
hex_String += hex + " ";
}
System.out.println("Character " + c + ":");
System.out.println("Hex: " + hex);
System.out.println("Binary: " + bin);
System.out.println("Decimal: " + ascii_dec);
System.out.println("");
}
System.out.println("Binary String: " + binary_String);
System.out.println("Hex String: " + hex_String);
if (string.equalsIgnoreCase("exit")) {
s.close();
System.exit(0);
}
}
}
}
private static List<String> splitIntoDamnPieces(int splitSize, String toSplit) {
List<String> list = new ArrayList<>();
for (int i = 0; i < toSplit.length(); i += splitSize) {
list.add(toSplit.substring(i, Math.min(toSplit.length(), i + splitSize)));
}
return list;
}
}