-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConvertidor_medida_de_info.java
172 lines (162 loc) · 2.74 KB
/
Convertidor_medida_de_info.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
package dosParcial;
public class Convertidor_medida_de_info {
//atributos
public static float bytes,bits,Gb,GB,MB,MiB,num;
public static String type,resultados;
//constructores
public Convertidor_medida_de_info() {};
public Convertidor_medida_de_info(float bytes,float bits,float Gb,float GB,float MB,float MiB)
{
this.bytes=bytes;
this.bytes=bytes;
this.bits=bits;
this.Gb=Gb;
this.GB=GB;
this.MB=MB;
this.MiB=MiB;
}
//Metodos
public String getBytes(float num, String type)
{
if (type=="bytes")
{
num=num;
resultados=num+" Bytes";
}
if (type=="bits")
{
num=num/8;
resultados=num+" Bytes";
}
if (type=="Gb")
{
num=num*134217728;
resultados=num+" Bytes";
}
if (type=="GB")
{
num=num*1073741824;
resultados=num+" Bytes";
}
if (type=="MB")
{
num=num*1048576;
resultados=num+" Bytes";
}
if (type=="MiB")
{
num=num*131072;
resultados=num+" Bytes";
}
return resultados;
}
public String getBits(float num, String type)
{
if (type=="bytes")
{
num=num*8;
resultados=num+" Bits";
}
if (type=="bits")
{
num=num;
resultados=num+" Bits";
}
if (type=="Gb")
{
num=num*1073741824;
resultados=num+" Bits";
}
if (type=="GB")
{
num=num*85899345;
resultados=num+" Bits";
}
if (type=="MB")
{
num=num*8388608;
resultados=num+" Bits";
}
if (type=="MiB")
{
num=num*1048576;
resultados=num+" Bits";
}
return this.resultados;
}
public String getGb(float num, String type)
{
if (type=="bytes")
{
num=num*1048576;
resultados=num+" Gb";
}
return resultados;
}
public String getGB(float num, String type)
{
if (type=="bytes")
{
num=num*1073741824;
resultados=num+" GB";
}
if (type=="bits")
{
}
if (type=="Gb")
{
num=num*8;
resultados=num+" GB";
}
if (type=="GB")
{
num=num;
resultados=num+" GB";
}
if (type=="MB")
{
num=num*1000;
resultados=num+" GB";
}
if (type=="MiB")
{
num=num*954;
resultados=num+" GB";
}
return resultados;
}
public String getMiB(double num, String type)
{
if (type=="bytes")
{
num=num*125000;
resultados=num+" MiB";
}
if (type=="bits")
{
num=num*8388608;
resultados=num+" MiB";
}
if (type=="Gb")
{
num=num*119.209;
resultados=num+" MiB";
}
if (type=="GB")
{
num=num*954;
resultados=num+" MiB";
}
if (type=="MB")
{
num=num/1.049;
resultados=num+" MiB";
}
if (type=="MiB")
{
num=num;
resultados=num+" MiB";
}
return resultados;
}
}