2016-05-19 14:20:52 +02:00
|
|
|
package net.foucry.pilldroid;
|
2016-05-19 07:37:28 +02:00
|
|
|
|
|
|
|
import java.io.InputStream;
|
|
|
|
import java.io.OutputStream;
|
|
|
|
|
|
|
|
import java.util.Random;
|
|
|
|
|
|
|
|
public class Utils {
|
|
|
|
public static void CopyStream(InputStream is, OutputStream os)
|
|
|
|
{
|
|
|
|
final int buffer_size=1024;
|
|
|
|
try
|
|
|
|
{
|
|
|
|
byte[] bytes=new byte[buffer_size];
|
|
|
|
for(;;)
|
|
|
|
{
|
|
|
|
int count=is.read(bytes, 0, buffer_size);
|
|
|
|
if(count==-1)
|
|
|
|
break;
|
|
|
|
os.write(bytes, 0, count);
|
|
|
|
}
|
|
|
|
}
|
2016-11-08 12:09:47 +01:00
|
|
|
catch(Exception ignored){}
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
|
2016-11-08 12:09:47 +01:00
|
|
|
/**
|
|
|
|
* Return a random number between twovalues - use to gənerat a false demo DB
|
|
|
|
* @param min minimal value accepted
|
|
|
|
* @param max maximum value accepted
|
|
|
|
* @return
|
|
|
|
*/
|
2020-07-03 21:44:20 +02:00
|
|
|
static int intRandomExclusive(int min, int max) {
|
2016-11-08 12:09:47 +01:00
|
|
|
Random r = new Random();
|
|
|
|
return r.nextInt(max - min) +max;
|
2016-05-19 07:37:28 +02:00
|
|
|
}
|
|
|
|
}
|