id int32 0 901k | id1 int32 74 23.7M | id2 int32 74 23.7M | func1 stringlengths 234 68.5k | func2 stringlengths 234 68.5k | label bool 2
classes |
|---|---|---|---|---|---|
0 | 13,988,825 | 8,660,836 | private void setNodekeyInJsonResponse(String service) throws Exception {
String filename = this.baseDirectory + service + ".json";
Scanner s = new Scanner(new File(filename));
PrintWriter fw = new PrintWriter(new File(filename + ".new"));
while (s.hasNextLine()) {
fw.prin... | public void transform(String style, String spec, OutputStream out) throws IOException {
URL url = new URL(rootURL, spec);
InputStream in = new PatchXMLSymbolsStream(new StripDoctypeStream(url.openStream()));
transform(style, in, out);
in.close();
}
| false |
1 | 80,378 | 18,548,122 | public static void test(String args[]) {
int trace;
int bytes_read = 0;
int last_contentLenght = 0;
try {
BufferedReader reader;
URL url;
url = new URL(args[0]);
URLConnection istream = url.openConnection();
last_contentLeng... | private static String loadUrlToString(String a_url) throws IOException {
URL l_url1 = new URL(a_url);
BufferedReader br = new BufferedReader(new InputStreamReader(l_url1.openStream()));
String l_content = "";
String l_ligne = null;
l_content = br.readLine();
while ((l... | true |
2 | 21,354,223 | 7,421,563 | public String kodetu(String testusoila) {
MessageDigest md = null;
try {
md = MessageDigest.getInstance("SHA");
md.update(testusoila.getBytes("UTF-8"));
} catch (NoSuchAlgorithmException e) {
new MezuLeiho("Ez da zifraketa algoritmoa aurkitu", "Ados", "Zif... | private StringBuffer encoder(String arg) {
if (arg == null) {
arg = "";
}
MessageDigest md5 = null;
try {
md5 = MessageDigest.getInstance("MD5");
md5.update(arg.getBytes(SysConstant.charset));
} catch (Exception e) {
e.printStac... | true |
3 | 15,826,299 | 19,728,871 | public static void printResponseHeaders(String address) {
logger.info("Address: " + address);
try {
URL url = new URL(address);
URLConnection conn = url.openConnection();
for (int i = 0; ; i++) {
String headerName = conn.getHeaderFieldKey(i);
... | public static String getEncodedPassword(String buff) {
if (buff == null) return null;
String t = new String();
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.update(buff.getBytes());
byte[] r = md.digest();
for (int i = 0; i < r.... | false |
4 | 9,938,081 | 11,517,213 | public void load(String fileName) {
BufferedReader bufReader;
loaded = false;
vector.removeAllElements();
try {
if (fileName.startsWith("http:")) {
URL url = new URL(fileName);
bufReader = new BufferedReader(new InputStreamReader(url.openSt... | private static void copyFile(File sourceFile, File destFile) {
try {
if (!destFile.exists()) {
destFile.createNewFile();
}
FileChannel source = null;
FileChannel destination = null;
try {
source = new FileInputStream... | false |
5 | 18,220,543 | 17,366,812 | private MapProperties readProperties(URL url) {
@SuppressWarnings("unchecked") MapProperties properties = new MapProperties(new LinkedHashMap());
InputStream is = null;
try {
is = url.openStream();
properties.load(is);
} catch (IOException ex) {
th... | public String tranportRemoteUnitToLocalTempFile(String urlStr) throws UnitTransportException {
InputStream input = null;
BufferedOutputStream bos = null;
File tempUnit = null;
try {
URL url = null;
int total = 0;
try {
url = new URL... | false |
6 | 22,328,849 | 17,334,846 | protected void doRestoreOrganize() throws Exception {
Connection con = null;
PreparedStatement ps = null;
ResultSet result = null;
String strDelQuery = "DELETE FROM " + Common.ORGANIZE_TABLE;
String strSelQuery = "SELECT organize_id,organize_type_id,organize_name,organize_man... | static String encodeEmailAsUserId(String email) {
try {
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(email.toLowerCase().getBytes());
StringBuilder builder = new StringBuilder();
builder.append("1");
for (byte b : md5.digest()) ... | false |
7 | 19,130,322 | 15,710,690 | private String sha1(String s) {
String encrypt = s;
try {
MessageDigest sha = MessageDigest.getInstance("SHA-1");
sha.update(s.getBytes());
byte[] digest = sha.digest();
final StringBuffer buffer = new StringBuffer();
for (int i = 0; i < di... | @SuppressWarnings("unused")
private String getMD5(String value) {
MessageDigest md5;
try {
md5 = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
return "";
}
md5.reset();
md5.update(value.getBytes());
byte[]... | true |
8 | 1,111,832 | 789,472 | private void storeFieldMap(WorkingContent c, Connection conn) throws SQLException {
SQLDialect dialect = getDatabase().getSQLDialect();
if (TRANSACTIONS_ENABLED) {
conn.setAutoCommit(false);
}
try {
Object thisKey = c.getPrimaryKey();
deleteFieldCo... | public void elimina(Pedido pe) throws errorSQL, errorConexionBD {
System.out.println("GestorPedido.elimina()");
int id = pe.getId();
String sql;
Statement stmt = null;
try {
gd.begin();
sql = "DELETE FROM pedido WHERE id=" + id;
System.out.... | true |
9 | 7,046,481 | 18,317,332 | public InlineImageChunk(URL url) {
super();
this.url = url;
try {
URLConnection urlConn = url.openConnection();
urlConn.setReadTimeout(15000);
ImageInputStream iis = ImageIO.createImageInputStream(urlConn.getInputStream());
Iterator<ImageReader... | void execute(Connection conn, Component parent, String context, final ProgressMonitor progressMonitor, ProgressWrapper progressWrapper) throws Exception {
int noOfComponents = m_components.length;
Statement statement = null;
StringBuffer pmNoteBuf = new StringBuffer(m_update ... | false |
10 | 190,292 | 978,946 | private static void main(String[] args) {
try {
File f = new File("test.txt");
if (f.exists()) {
throw new IOException(f + " already exists. I don't want to overwrite it.");
}
StraightStreamReader in;
char[] cbuf = new char[0x1000]... | public static void copyFile(File in, File out) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (IOExcep... | true |
11 | 19,653,581 | 9,312,243 | public List<SuspectFileProcessingStatus> retrieve() throws Exception {
BufferedOutputStream bos = null;
try {
String listFilePath = GeneralUtils.generateAbsolutePath(getDownloadDirectoryPath(), getListName(), "/");
listFilePath = listFilePath.concat(".xml");
if (!... | void shutdown(final boolean unexpected) {
if (unexpected) {
log.warn("S H U T D O W N --- received unexpected shutdown request.");
} else {
log.info("S H U T D O W N --- start regular shutdown.");
}
if (this.uncaughtException != null) {
log... | true |
12 | 369,572 | 4,761,833 | private void displayDiffResults() throws IOException {
File outFile = File.createTempFile("diff", ".htm");
outFile.deleteOnExit();
FileOutputStream outStream = new FileOutputStream(outFile);
BufferedWriter out = new BufferedWriter(new OutputStreamWriter(outStream));
out.write... | private void copyFileToDir(MyFile file, MyFile to, wlPanel panel) throws IOException {
Utilities.print("started copying " + file.getAbsolutePath() + "\n");
FileOutputStream fos = new FileOutputStream(new File(to.getAbsolutePath()));
FileChannel foc = fos.getChannel();
FileInputStream... | true |
13 | 2,285,441 | 16,987,999 | static synchronized Person lookup(PhoneNumber number, String siteName) {
Vector<Person> foundPersons = new Vector<Person>(5);
if (number.isFreeCall()) {
Person p = new Person("", "FreeCall");
p.addNumber(number);
foundPersons.add(p);
} else if (number.isSI... | private void copyFile(File sourceFile, File destFile) throws IOException {
if (!sourceFile.exists()) {
return;
}
if (!destFile.exists()) {
destFile.createNewFile();
}
FileChannel source = null;
FileChannel destination = null;
source = n... | false |
14 | 13,041,693 | 116,038 | @Override
public void vote(String urlString, Map<String, String> headData, Map<String, String> paramData) {
HttpURLConnection httpConn = null;
try {
URL url = new URL(urlString);
httpConn = (HttpURLConnection) url.openConnection();
String cookies = getCookies(... | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | false |
15 | 14,157,859 | 3,791,822 | static void copyFile(File file, File file1) throws IOException {
byte abyte0[] = new byte[512];
FileInputStream fileinputstream = new FileInputStream(file);
FileOutputStream fileoutputstream = new FileOutputStream(file1);
int i;
while ((i = fileinputstream.read(abyte0)) > 0) ... | public Void doInBackground() {
setProgress(0);
for (int i = 0; i < uploadFiles.size(); i++) {
String filePath = uploadFiles.elementAt(i).getFilePath();
String fileName = uploadFiles.elementAt(i).getFileName();
String fileMsg = "Uploading fi... | true |
16 | 23,270,032 | 21,907,871 | public void checkin(Object _document) {
this.document = (Document) _document;
synchronized (url) {
OutputStream outputStream = null;
try {
if ("file".equals(url.getProtocol())) {
outputStream = new FileOutputStream(url.getFile());
... | public static void extractFile(String jarArchive, String fileToExtract, String destination) {
FileWriter writer = null;
ZipInputStream zipStream = null;
try {
FileInputStream inputStream = new FileInputStream(jarArchive);
BufferedInputStream bufferedStream = new Buffe... | false |
17 | 17,586,131 | 14,533,184 | protected void update(String sql, Object[] args) {
Connection conn = null;
PreparedStatement pstmt = null;
try {
conn = JdbcUtils.getConnection();
conn.setAutoCommit(false);
pstmt = conn.prepareStatement(sql);
this.setParameters(pstmt, args);
... | public boolean delete(int id) {
boolean deletionOk = false;
Connection conn = null;
try {
conn = db.getConnection();
conn.setAutoCommit(false);
String sql = "DELETE FROM keyphrases WHERE website_id=?";
PreparedStatement ps = conn.prepareStateme... | true |
18 | 18,865,693 | 1,477,578 | private static void copyFile(File inputFile, File outputFile) throws IOException {
FileReader in = new FileReader(inputFile);
FileWriter out = new FileWriter(outputFile);
int c;
while ((c = in.read()) != -1) out.write(c);
in.close();
out.close();
}
| public static void copy(FileInputStream source, FileOutputStream dest) throws IOException {
FileChannel in = null, out = null;
try {
in = source.getChannel();
out = dest.getChannel();
long size = in.size();
MappedByteBuffer buf = in.map(FileChannel.Map... | true |
19 | 5,506,807 | 10,176,882 | public void testPreparedStatement0009() throws Exception {
Statement stmt = con.createStatement();
stmt.executeUpdate("create table #t0009 " + " (i integer not null, " + " s char(10) not null) ");
con.setAutoCommit(false);
PreparedStatement pstmt = con.prepareStatemen... | @SuppressWarnings("unchecked")
protected void processDownloadAction(HttpServletRequest request, HttpServletResponse response) throws Exception {
File transformationFile = new File(xslBase, "file-info.xsl");
HashMap<String, Object> params = new HashMap<String, Object>();
params.putAll(req... | false |
20 | 2,746,011 | 5,105,540 | @RequestMapping(value = "/privatefiles/{file_name}")
public void getFile(@PathVariable("file_name") String fileName, HttpServletResponse response, Principal principal) {
try {
Boolean validUser = false;
final String currentUser = principal.getName();
Authentication au... | public AudioInputStream getAudioInputStream(URL url) throws UnsupportedAudioFileException, IOException {
if (TDebug.TraceAudioFileReader) {
TDebug.out("MpegAudioFileReader.getAudioInputStream(URL): begin");
}
long lFileLengthInBytes = AudioSystem.NOT_SPECIFIED;
URLConnect... | false |
21 | 3,287,282 | 13,431,536 | public void googleImageSearch(String start) {
try {
String u = "http://images.google.com/images?q=" + custom + start;
if (u.contains(" ")) {
u = u.replace(" ", "+");
}
URL url = new URL(u);
HttpURLConnection httpcon = (HttpURLConnec... | @Override
public int updateStatus(UserInfo userInfo, String status) throws Exception {
OAuthConsumer consumer = SnsConstant.getOAuthConsumer(SnsConstant.SOHU);
consumer.setTokenWithSecret(userInfo.getAccessToken(), userInfo.getAccessSecret());
try {
URL url = new URL(SnsConst... | false |
22 | 16,744,397 | 18,315,736 | public void copyToZip(ZipOutputStream zout, String entryName) throws IOException {
close();
ZipEntry entry = new ZipEntry(entryName);
zout.putNextEntry(entry);
if (!isEmpty() && this.tmpFile.exists()) {
InputStream in = new FileInputStream(this.tmpFile);
IOUti... | private List<String> getTaxaList() {
List<String> taxa = new Vector<String>();
String domain = m_domain.getStringValue();
String id = "";
if (domain.equalsIgnoreCase("Eukaryota")) id = "eukaryota";
try {
URL url = new URL("http://www.ebi.ac.uk/genomes/" + id + ".d... | false |
23 | 18,269,744 | 10,140,251 | public static boolean encodeFileToFile(String infile, String outfile) {
boolean success = false;
java.io.InputStream in = null;
java.io.OutputStream out = null;
try {
in = new Base64.InputStream(new java.io.BufferedInputStream(new java.io.FileInputStream(infile)), Base64.... | protected String contentString() {
String result = null;
URL url;
String encoding = null;
try {
url = url();
URLConnection connection = url.openConnection();
connection.setDoInput(true);
connection.setDoOutput(false);
connec... | false |
24 | 14,876,163 | 3,260,787 | public static void copyFile(File in, File out) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (IOExcep... | public CopyAllDataToOtherFolderResponse CopyAllDataToOtherFolder(DPWSContext context, CopyAllDataToOtherFolder CopyAllDataInps) throws DPWSException {
CopyAllDataToOtherFolderResponse cpyRp = new CopyAllDataToOtherFolderResponseImpl();
int hany = 0;
String errorMsg = null;
try {
... | true |
25 | 14,313,659 | 10,109,343 | private int writeTraceFile(final File destination_file, final String trace_file_name, final String trace_file_path) {
URL url = null;
BufferedInputStream is = null;
FileOutputStream fo = null;
BufferedOutputStream os = null;
int b = 0;
if (destination_file == null) {
... | public void readData() throws IOException {
i = 0;
j = 0;
URL url = getClass().getResource("resources/tuneGridMaster.dat");
InputStream is = url.openStream();
InputStreamReader isr = new InputStreamReader(is);
BufferedReader br = new BufferedReader(isr);
s = b... | false |
26 | 13,745,376 | 10,567,003 | public IStatus runInUIThread(IProgressMonitor monitor) {
monitor.beginTask(Strings.MSG_CONNECT_SERVER, 3);
InputStream in = null;
try {
URL url = createOpenUrl(resource, pref);
if (url != null) {
URLConnection con = url.open... | private InputStream loadSource(String url) throws ClientProtocolException, IOException {
HttpClient httpclient = new DefaultHttpClient();
httpclient.getParams().setParameter(HTTP.USER_AGENT, "Mozilla/4.0 (compatible; MSIE 7.0b; Windows NT 6.0)");
HttpGet httpget = new HttpGet(url);
H... | false |
27 | 22,075,089 | 20,623,710 | public static void executa(String arquivo, String filial, String ip) {
String drive = arquivo.substring(0, 2);
if (drive.indexOf(":") == -1) drive = "";
Properties p = Util.lerPropriedades(arquivo);
String servidor = p.getProperty("servidor");
String impressora = p.getPropert... | public static synchronized void repartition(File[] sourceFiles, File targetDirectory, String prefix, long maxUnitBases, long maxUnitEntries) throws Exception {
if (!targetDirectory.exists()) {
if (!targetDirectory.mkdirs()) throw new Exception("Could not create directory " + targetDirectory.getA... | true |
28 | 19,217,522 | 10,385,493 | boolean copyFileStructure(File oldFile, File newFile) {
if (oldFile == null || newFile == null) return false;
File searchFile = newFile;
do {
if (oldFile.equals(searchFile)) return false;
searchFile = searchFile.getParentFile();
} while (searchFile != null);
... | public void writeBack(File destinationFile, boolean makeCopy) throws IOException {
if (makeCopy) {
FileChannel sourceChannel = new java.io.FileInputStream(getFile()).getChannel();
FileChannel destinationChannel = new java.io.FileOutputStream(destinationFile).getChannel();
... | true |
29 | 7,681,426 | 11,717,079 | public void extractProfile(String parentDir, String fileName, String profileName) {
try {
byte[] buf = new byte[1024];
ZipInputStream zipinputstream = null;
ZipEntry zipentry;
if (createProfileDirectory(profileName, parentDir)) {
debug("the pro... | void copyFile(File inputFile, File outputFile) {
try {
FileReader in;
in = new FileReader(inputFile);
FileWriter out = new FileWriter(outputFile);
int c;
while ((c = in.read()) != -1) out.write(c);
in.close();
out.close();
... | true |
30 | 8,831,301 | 8,365,268 | public void run() {
String s;
s = "";
try {
URL url = new URL("http://www.m-w.com/dictionary/" + word);
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
String str;
while (((str = in.readLine()) != null) && (!sto... | public static String[] readStats() throws Exception {
URL url = null;
BufferedReader reader = null;
StringBuilder stringBuilder;
try {
url = new URL("http://localhost:" + port + webctx + "/shared/js/libOO/health_check.sjs");
HttpURLConnection connection = (Htt... | true |
31 | 308,643 | 21,172,450 | public void convert(File src, File dest) throws IOException {
InputStream in = new BufferedInputStream(new FileInputStream(src));
DcmParser p = pfact.newDcmParser(in);
Dataset ds = fact.newDataset();
p.setDcmHandler(ds.getDcmHandler());
try {
FileFormat format = p... | public static void unzip2(String strZipFile, String folder) throws IOException, ArchiveException {
FileUtil.fileExists(strZipFile, true);
final InputStream is = new FileInputStream(strZipFile);
ArchiveInputStream in = new ArchiveStreamFactory().createArchiveInputStream("zip", is);
Zi... | true |
32 | 11,322,573 | 3,224,152 | private void preprocessObjects(GeoObject[] objects) throws IOException {
System.out.println("objects.length " + objects.length);
for (int i = 0; i < objects.length; i++) {
String fileName = objects[i].getPath();
int dotindex = fileName.lastIndexOf(".");
dotindex =... | private String transferWSDL(String usernameAndPassword) throws WiseConnectionException {
String filePath = null;
try {
URL endpoint = new URL(wsdlURL);
HttpURLConnection conn = (HttpURLConnection) endpoint.openConnection();
conn.setDoOutput(false);
con... | true |
33 | 13,569,337 | 11,394,767 | public static String getMD5HashFromString(String message) {
String hashword = null;
try {
MessageDigest md5 = MessageDigest.getInstance("MD5");
md5.update(message.getBytes());
BigInteger hash = new BigInteger(1, md5.digest());
hashword = hash.toString(... | public static byte[] gerarHash(String frase) {
try {
MessageDigest md = MessageDigest.getInstance("SHA-1");
md.update(frase.getBytes());
return md.digest();
} catch (NoSuchAlgorithmException e) {
return null;
}
}
| true |
34 | 254,039 | 16,016,623 | protected void doDownload(S3Bucket bucket, S3Object s3object) throws Exception {
String key = s3object.getKey();
key = trimPrefix(key);
String[] path = key.split("/");
String fileName = path[path.length - 1];
String dirPath = "";
for (int i = 0; i < path.length - 1; i... | @Override
protected ModelAndView handleRequestInternal(final HttpServletRequest request, final HttpServletResponse response) throws Exception {
final String filename = ServletRequestUtils.getRequiredStringParameter(request, "id");
final File file = new File(path, filename + ".html");
log... | true |
35 | 4,147,990 | 1,663,419 | public static void copyFile(File dst, File src, boolean append) throws FileNotFoundException, IOException {
dst.createNewFile();
FileChannel in = new FileInputStream(src).getChannel();
FileChannel out = new FileOutputStream(dst).getChannel();
long startAt = 0;
if (append) sta... | private static void copyFile(File in, File out) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (IOExce... | true |
36 | 16,603,670 | 12,576,210 | private String generateUniqueIdMD5(String workgroupIdString, String runIdString) {
String passwordUnhashed = workgroupIdString + "-" + runIdString;
MessageDigest m = null;
try {
m = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmExceptio... | public static FTPClient createConnection(String hostname, int port, char[] username, char[] password, String workingDirectory, FileSystemOptions fileSystemOptions) throws FileSystemException {
if (username == null) username = "anonymous".toCharArray();
if (password == null) password = "anonymous".to... | false |
37 | 19,825,038 | 9,385,633 | public static byte[] post(String path, Map<String, String> params, String encode) throws Exception {
StringBuilder parambuilder = new StringBuilder("");
if (params != null && !params.isEmpty()) {
for (Map.Entry<String, String> entry : params.entrySet()) {
parambuilder.app... | protected void setRankOrder() {
this.rankOrder = new int[values.length];
for (int i = 0; i < rankOrder.length; i++) {
rankOrder[i] = i;
assert (!Double.isNaN(values[i]));
}
for (int i = rankOrder.length - 1; i >= 0; i--) {
boolean swapped = false;
... | false |
38 | 810,724 | 22,207,815 | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | public static Checksum checksum(File file, Checksum checksum) throws IOException {
if (file.isDirectory()) {
throw new IllegalArgumentException("Checksums can't be computed on directories");
}
InputStream in = null;
try {
in = new CheckedInputStream(new FileIn... | true |
39 | 1,643,091 | 23,277,837 | private static void download(String urlString) throws IOException {
URL url = new URL(urlString);
url = handleRedirectUrl(url);
URLConnection cn = url.openConnection();
Utils.setHeader(cn);
long fileLength = cn.getContentLength();
Statics.getInstance().setFileLength(f... | private File download(String filename, URL url) {
int size = -1;
int received = 0;
try {
fireDownloadStarted(filename);
File file = createFile(filename);
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(file));
System.out.println("下载资源:" + filename + ", url=" + url);
// Buf... | false |
40 | 1,214,975 | 21,172,450 | public static void writeToFile(InputStream input, File file, ProgressListener listener, long length) {
OutputStream output = null;
try {
output = new CountingOutputStream(new FileOutputStream(file), listener, length);
IOUtils.copy(input, output);
} catch (IOException ... | public static void unzip2(String strZipFile, String folder) throws IOException, ArchiveException {
FileUtil.fileExists(strZipFile, true);
final InputStream is = new FileInputStream(strZipFile);
ArchiveInputStream in = new ArchiveStreamFactory().createArchiveInputStream("zip", is);
Zi... | true |
41 | 9,070,085 | 17,832,320 | public String getMd5CodeOf16(String str) {
StringBuffer buf = null;
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.update(str.getBytes());
byte b[] = md.digest();
int i;
buf = new StringBuffer("");
for (int offset... | public void run() {
Pair p = null;
try {
while ((p = queue.pop()) != null) {
GetMethod get = new GetMethod(p.getRemoteUri());
try {
get.setFollowRedirects(true);
get.setRequestHeader("Mariner-Application", "prerender... | false |
42 | 10,445,018 | 19,295,210 | public String MD5(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException {
MessageDigest md;
md = MessageDigest.getInstance("MD5");
byte[] md5hash = new byte[32];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
md5hash = md.digest();
retu... | public static String generateHash(String value) {
MessageDigest md5 = null;
try {
md5 = MessageDigest.getInstance("MD5");
md5.reset();
md5.update(value.getBytes());
} catch (NoSuchAlgorithmException e) {
log.error("Could not find the requested ... | true |
43 | 6,988,217 | 701,471 | public void testQueryForBinary() throws InvalidNodeTypeDefException, ParseException, Exception {
JCRNodeSource source = (JCRNodeSource) resolveSource(BASE_URL + "images/photo.png");
assertNotNull(source);
assertEquals(false, source.exists());
OutputStream os = source.getOutputStream(... | private boolean enregistreToi() {
PrintWriter lEcrivain;
String laDest = "./img_types/" + sonImage;
if (!new File("./img_types").exists()) {
new File("./img_types").mkdirs();
}
try {
FileChannel leFicSource = new FileInputStream(sonFichier).getChannel(... | true |
44 | 4,855,600 | 12,853,333 | public void schema(final Row row, TestResults testResults) throws Exception {
String urlString = row.text(1);
String schemaBase = null;
if (row.cellExists(2)) {
schemaBase = row.text(2);
}
try {
StreamSource schemaSource;
if (urlString.star... | public static String getURLContent(String href) throws BuildException {
URL url = null;
String content;
try {
URL context = new URL("file:" + System.getProperty("user.dir") + "/");
url = new URL(context, href);
InputStream is = url.openStream();
... | false |
45 | 1,989,226 | 11,961,013 | public void actualizar() throws SQLException, ClassNotFoundException, Exception {
Connection conn = null;
PreparedStatement ms = null;
registroActualizado = false;
try {
conn = ToolsBD.getConn();
conn.setAutoCommit(false);
Date fechaSystem = new Da... | public static Builder fromURL(URL url) {
try {
InputStream in = null;
try {
in = url.openStream();
ByteArrayOutputStream baos = new ByteArrayOutputStream();
int read = -1;
byte[] buf = new byte[4096];
whi... | false |
46 | 15,596,950 | 14,782,656 | private static ImageIcon tryLoadImageIconFromResource(String filename, String path, int width, int height) {
ImageIcon icon = null;
try {
URL url = cl.getResource(path + pathSeparator + fixFilename(filename));
if (url != null && url.openStream() != null) {
ico... | private static Long statusSWGCraftTime() {
long current = System.currentTimeMillis() / 1000L;
if (current < (previousStatusCheck + SWGCraft.STATUS_CHECK_DELAY)) return previousStatusTime;
URL url = null;
try {
synchronized (previousStatusTime) {
if (curren... | false |
47 | 249,428 | 6,166,363 | public boolean onStart() {
log("Starting up, this may take a minute...");
gui = new ApeAtollGUI();
gui.setVisible(true);
while (waitGUI) {
sleep(100);
}
URLConnection url = null;
BufferedReader in = null;
BufferedWriter out = null;
... | private static byte[] gerarHash(String frase) {
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.update(frase.getBytes());
return md.digest();
} catch (Exception e) {
return null;
}
}
| false |
48 | 6,751,999 | 18,761,618 | public static void main(String[] args) throws Exception {
TripleDES tdes = new TripleDES();
StreamBlockReader reader = new StreamBlockReader(new FileInputStream("D:\\test.txt"));
StreamBlockWriter writer = new StreamBlockWriter(new FileOutputStream("D:\\testTDESENC.txt"));
SingleKey ... | private FileInputStream getPackageStream(String archivePath) throws IOException, PackageManagerException {
final int lastSlashInName = filename.lastIndexOf("/");
final String newFileName = filename.substring(lastSlashInName);
File packageFile = new File((new StringBuilder()).append(archivePa... | true |
49 | 19,193,813 | 18,568,751 | public void writeTo(File f) throws IOException {
if (state != STATE_OK) throw new IllegalStateException("Upload failed");
if (tempLocation == null) throw new IllegalStateException("File already saved");
if (f.isDirectory()) f = new File(f, filename);
FileInputStream fis = new FileInp... | public static Boolean decompress(File source, File destination) {
FileOutputStream outputStream;
ZipInputStream inputStream;
try {
outputStream = null;
inputStream = new ZipInputStream(new FileInputStream(source));
int read;
byte buffer[] = new... | true |
50 | 418,257 | 21,900,384 | public BufferedWriter createOutputStream(String inFile, String outFile) throws IOException {
int k_blockSize = 1024;
int byteCount;
char[] buf = new char[k_blockSize];
File ofp = new File(outFile);
ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(ofp));
... | @Override
protected ActionForward executeAction(ActionMapping mapping, ActionForm form, User user, HttpServletRequest request, HttpServletResponse response) throws Exception {
long resourceId = ServletRequestUtils.getLongParameter(request, "resourceId", 0L);
String attributeIdentifier = request.... | true |
51 | 10,793,825 | 2,247,987 | public String getRec(String attribute, String url) {
String arr[] = new String[3];
String[] subarr = new String[6];
String mdPrefix = "";
String mdPrefixValue = "";
String iden = "";
String idenValue = "";
String s = "";
String arguments = attribute.su... | public static void main(String argv[]) {
Matrix A, B, C, Z, O, I, R, S, X, SUB, M, T, SQ, DEF, SOL;
int errorCount = 0;
int warningCount = 0;
double tmp, s;
double[] columnwise = { 1., 2., 3., 4., 5., 6., 7., 8., 9., 10., 11., 12. };
double[] rowwise = { 1., 4., 7., 1... | false |
52 | 3,262,458 | 8,452,564 | @Override
public void run() {
while (run) {
try {
URL url = new URL("http://" + server.getIp() + "/" + tomcat.getName() + "/ui/pva/version.jsp?RT=" + System.currentTimeMillis());
BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream(), Ch... | public void run() {
try {
HttpPost httpPostRequest = new HttpPost(Feesh.device_URL);
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
nameValuePairs.add(new BasicNameValueP... | false |
53 | 17,267,601 | 20,336,463 | public void setBckImg(String newPath) {
try {
File inputFile = new File(getPath());
File outputFile = new File(newPath);
if (!inputFile.getCanonicalPath().equals(outputFile.getCanonicalPath())) {
FileInputStream in = new FileInputStream(inputFile);
... | private static void prepare() {
System.err.println("PREPARING-----------------------------------------");
deleteHome();
InputStream configStream = null;
FileOutputStream tempStream = null;
try {
configStream = AllTests.class.getClassLoader().getResourceAsStream("n... | true |
54 | 21,704,695 | 9,385,030 | public String hmacSHA256(String message, byte[] key) {
MessageDigest sha256 = null;
try {
sha256 = MessageDigest.getInstance("SHA-256");
} catch (NoSuchAlgorithmException e) {
throw new java.lang.AssertionError(this.getClass().getName() + ".hmacSHA256(): SHA-256 algor... | public static void main(String[] args) throws Exception {
long start = System.currentTimeMillis();
XSLTBuddy buddy = new XSLTBuddy();
buddy.parseArgs(args);
XSLTransformer transformer = new XSLTransformer();
if (buddy.templateDir != null) {
transformer.setTemplate... | false |
55 | 18,513,921 | 430,971 | public static void copy(File src, File dst) {
try {
InputStream is = null;
OutputStream os = null;
try {
is = new BufferedInputStream(new FileInputStream(src), BUFFER_SIZE);
os = new BufferedOutputStream(new FileOutputStream(dst), BUFFER_SI... | public static void copyFile(File destFile, File src) throws IOException {
File destDir = destFile.getParentFile();
File tempFile = new File(destFile + "_tmp");
destDir.mkdirs();
InputStream is = new FileInputStream(src);
try {
FileOutputStream os = new FileOutputS... | true |
56 | 15,982,225 | 23,285,410 | private static String getDigest(String srcStr, String alg) {
Assert.notNull(srcStr);
Assert.notNull(alg);
try {
MessageDigest alga = MessageDigest.getInstance(alg);
alga.update(srcStr.getBytes());
byte[] digesta = alga.digest();
return byte2hex... | public void displayItems() throws IOException {
URL url = new URL(SNIPPETS_FEED + "?bq=" + URLEncoder.encode(QUERY, "UTF-8") + "&key=" + DEVELOPER_KEY);
HttpURLConnection httpConnection = (HttpURLConnection) url.openConnection();
InputStream inputStream = httpConnection.getInputStream();
... | false |
57 | 7,398,604 | 820,905 | @Override
public Collection<IAuthor> doImport() throws Exception {
progress.initialize(2, "Ściągam autorów amerykańskich");
String url = "http://pl.wikipedia.org/wiki/Kategoria:Ameryka%C5%84scy_autorzy_fantastyki";
UrlResource resource = new UrlResource(url);
InputStream urlInput... | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | true |
58 | 19,584,493 | 4,076,629 | @Override
public String toString() {
if (byteArrayOutputStream == null) return "<Unparsed binary data: Content-Type=" + getHeader("Content-Type") + " >";
String charsetName = getCharsetName();
if (charsetName == null) charsetName = "ISO-8859-1";
try {
if (unzip) {
... | public void uploadFile(String filename) throws RQLException {
checkFtpClient();
OutputStream out = null;
try {
out = ftpClient.storeFileStream(filename);
IOUtils.copy(new FileReader(filename), out);
out.close();
ftpClient.completePendingCommand... | true |
59 | 1,888,878 | 7,665,877 | protected void copyFile(File source, File destination) throws ApplicationException {
try {
OutputStream out = new FileOutputStream(destination);
DataInputStream in = new DataInputStream(new FileInputStream(source));
byte[] buf = new byte[8192];
for (int nread ... | public SCFFile(URL url) throws IOException {
URLConnection connection = url.openConnection();
byte[] content = new byte[connection.getContentLength()];
DataInputStream dis = new DataInputStream(connection.getInputStream());
dis.readFully(content);
dis.close();
dis = n... | false |
60 | 11,044,947 | 16,851,953 | public static void copyFile(File in, File out, boolean append) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out, append).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
... | @Test
public void testTrainingDefault() throws IOException {
File temp = File.createTempFile("fannj_", ".tmp");
temp.deleteOnExit();
IOUtils.copy(this.getClass().getResourceAsStream("xor.data"), new FileOutputStream(temp));
List<Layer> layers = new ArrayList<Layer>();
lay... | true |
61 | 19,693,561 | 22,137,813 | public Model read(String uri, String base, String lang) {
try {
URL url = new URL(uri);
return read(url.openStream(), base, lang);
} catch (IOException e) {
throw new OntologyException("I/O error while reading from uri " + uri);
}
}
| public static ObjectID[] sortDecending(ObjectID[] oids) {
for (int i = 1; i < oids.length; i++) {
ObjectID iId = oids[i];
for (int j = 0; j < oids.length - i; j++) {
if (oids[j].getTypePrefix() > oids[j + 1].getTypePrefix()) {
ObjectID temp = oids[... | false |
62 | 601,908 | 12,678,589 | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | public static boolean decodeFileToFile(String infile, String outfile) {
boolean success = false;
java.io.InputStream in = null;
java.io.OutputStream out = null;
try {
in = new Base64.InputStream(new java.io.BufferedInputStream(new java.io.FileInputStream(infile)), Base64.... | true |
63 | 18,293,811 | 7,303,337 | private static void copy(String from_name, String to_name) throws IOException {
File from_file = new File(from_name);
File to_file = new File(to_name);
if (!from_file.exists()) abort("�������� ���� �� ���������" + from_file);
if (!from_file.isFile()) abort("���������� ����������� ���... | public static void downloadJars(IProject project, String repositoryUrl, String jarDirectory, String[] jars) {
try {
File tmpFile = null;
for (String jar : jars) {
try {
tmpFile = File.createTempFile("tmpPlugin_", ".zip");
URL ur... | true |
64 | 13,863,615 | 15,593,678 | protected String getLibJSCode() throws IOException {
if (cachedLibJSCode == null) {
InputStream is = getClass().getResourceAsStream(JS_LIB_FILE);
StringWriter output = new StringWriter();
IOUtils.copy(is, output);
cachedLibJSCode = output.toString();
}... | private static void copyFile(File in, File out) throws Exception {
final FileInputStream input = new FileInputStream(in);
try {
final FileOutputStream output = new FileOutputStream(out);
try {
final byte[] buf = new byte[4096];
int readBytes = ... | true |
65 | 16,298,029 | 3,931,480 | public String md5(String password) {
MessageDigest m = null;
try {
m = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException ex) {
}
m.update(password.getBytes(), 0, password.length());
return new BigInteger(1, m.digest()).toString(16);
}... | public final String encrypt(final String plaintext, final String salt) {
if (plaintext == null) {
throw new NullPointerException();
}
if (salt == null) {
throw new NullPointerException();
}
try {
final MessageDigest md = MessageDigest.getIn... | true |
66 | 20,691,789 | 2,467,221 | public static void copyFile(File inputFile, File outputFile) throws IOException {
FileChannel inChannel = null;
FileChannel outChannel = null;
try {
inChannel = new FileInputStream(inputFile).getChannel();
outChannel = new FileOutputStream(outputFile).getChannel();
... | void copyFile(File src, File dst) throws IOException {
InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) out.write(buf, 0, len);
in.close();
out.close... | true |
67 | 2,232,619 | 7,577,030 | public void testStorageStringWriter() throws Exception {
TranslationResponseInMemory r = new TranslationResponseInMemory(2048, "UTF-8");
{
Writer w = r.getWriter();
w.write("This is an example");
w.write(" and another one.");
w.flush();
ass... | private void zipFiles(File file, File[] fa) throws Exception {
File f = new File(file, ALL_FILES_NAME);
if (f.exists()) {
f.delete();
f = new File(file, ALL_FILES_NAME);
}
ZipOutputStream zoutstrm = new ZipOutputStream(new FileOutputStream(f));
for (in... | true |
68 | 7,066,835 | 1,966,262 | protected List<Datastream> getDatastreams(final DepositCollection pDeposit) throws IOException, SWORDException {
List<Datastream> tDatastreams = new ArrayList<Datastream>();
LOG.debug("copying file");
String tZipTempFileName = super.getTempDir() + "uploaded-file.tmp";
IOUtils.copy(pD... | public static boolean encodeFileToFile(String infile, String outfile) {
boolean success = false;
java.io.InputStream in = null;
java.io.OutputStream out = null;
try {
in = new Base64.InputStream(new java.io.BufferedInputStream(new java.io.FileInputStream(infile)), Base64.... | true |
69 | 17,217,414 | 17,984,312 | public void addEntry(InputStream jis, JarEntry entry) throws IOException, URISyntaxException {
File target = new File(this.target.getPath() + entry.getName()).getAbsoluteFile();
if (!target.exists()) {
target.createNewFile();
}
if ((new File(this.source.toURI())).isDirect... | public static void copyFile(File in, File out) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (IOExcep... | true |
70 | 7,396,680 | 5,856,886 | public static boolean copyMerge(FileSystem srcFS, Path srcDir, FileSystem dstFS, Path dstFile, boolean deleteSource, Configuration conf, String addString) throws IOException {
dstFile = checkDest(srcDir.getName(), dstFS, dstFile, false);
if (!srcFS.getFileStatus(srcDir).isDir()) return false;
... | public BufferedWriter createOutputStream(String inFile, String outFile) throws IOException {
int k_blockSize = 1024;
int byteCount;
char[] buf = new char[k_blockSize];
File ofp = new File(outFile);
ZipOutputStream zos = new ZipOutputStream(new FileOutputStream(ofp));
... | true |
71 | 6,908,554 | 20,669,450 | static void reopen(MJIEnv env, int objref) throws IOException {
int fd = env.getIntField(objref, "fd");
long off = env.getLongField(objref, "off");
if (content.get(fd) == null) {
int mode = env.getIntField(objref, "mode");
int fnRef = env.getReferenceField(objref, "fi... | private void auth() throws IOException {
authorized = false;
seqNumber = 0;
DatagramSocket ds = new DatagramSocket();
ds.setSoTimeout(UDPHID_DEFAULT_TIMEOUT);
ds.connect(addr, port);
DatagramPacket p = new DatagramPacket(buffer.array(), buffer.capacity());
for... | false |
72 | 1,966,263 | 18,600,188 | public static boolean decodeFileToFile(String infile, String outfile) {
boolean success = false;
java.io.InputStream in = null;
java.io.OutputStream out = null;
try {
in = new Base64.InputStream(new java.io.BufferedInputStream(new java.io.FileInputStream(infile)), Base64.... | private void copyFile(String fileName, String messageID, boolean isError) {
try {
File inputFile = new File(fileName);
File outputFile = null;
if (isError) {
outputFile = new File(provider.getErrorDataLocation(folderName) + messageID + ".xml");
... | true |
73 | 8,330,064 | 12,524,253 | @Test
public void testWriteAndReadBigger() throws Exception {
JCFSFileServer server = new JCFSFileServer(defaultTcpPort, defaultTcpAddress, defaultUdpPort, defaultUdpAddress, dir, 0, 0);
JCFS.configureDiscovery(defaultUdpAddress, defaultUdpPort);
try {
server.start();
... | public DialogSongList(JFrame frame) {
super(frame, "Menu_SongList", "songList");
setMinimumSize(new Dimension(400, 200));
JPanel panel, spanel;
Container contentPane;
(contentPane = getContentPane()).add(songSelector = new SongSelector(configKey, null, true));
songSel... | true |
74 | 4,376,758 | 22,249,465 | public void setKey(String key) {
MessageDigest md5;
byte[] mdKey = new byte[32];
try {
md5 = MessageDigest.getInstance("MD5");
md5.update(key.getBytes());
byte[] digest = md5.digest();
System.arraycopy(digest, 0, mdKey, 0, 16);
Syst... | public static String getWebPage(URL urlObj) {
try {
String content = "";
InputStreamReader is = new InputStreamReader(urlObj.openStream());
BufferedReader reader = new BufferedReader(is);
String line;
while ((line = reader.readLine()) != null) {
... | false |
75 | 105,319 | 16,341,721 | private String MD5Sum(String input) {
String hashtext = null;
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.reset();
md.update(input.getBytes());
byte[] digest = md.digest();
BigInteger bigInt = new BigInteger(1, digest);
... | public boolean isPasswordCorrect(String attempt) {
try {
MessageDigest digest = MessageDigest.getInstance(attempt);
digest.update(salt);
digest.update(attempt.getBytes("UTF-8"));
byte[] attemptHash = digest.digest();
return attemptHash.equals(hash)... | true |
76 | 7,839,811 | 4,056,440 | public static String md5(String input) {
byte[] temp;
try {
MessageDigest messageDigest;
messageDigest = MessageDigest.getInstance("MD5");
messageDigest.update(input.getBytes());
temp = messageDigest.digest();
} catch (Exception e) {
... | public final String hashPassword(final String password) {
try {
if (salt == null) {
salt = new byte[16];
SecureRandom sr = SecureRandom.getInstance("SHA1PRNG");
sr.setSeed(System.currentTimeMillis());
sr.... | true |
77 | 4,207,693 | 5,713,525 | private synchronized boolean saveU(URL url, String typeFlag, byte[] arrByte) {
BufferedReader buffReader = null;
BufferedOutputStream buffOS = null;
URLConnection urlconnection = null;
char flagChar = '0';
boolean flag = true;
try {
urlconnection = url.ope... | private byte[] getFileFromFtp(String remote) throws Exception {
ftp = new FTPClient();
int reply;
ftp.connect(ftpServer);
reply = ftp.getReplyCode();
if (!FTPReply.isPositiveCompletion(reply)) {
ftp.disconnect();
throw new Exception("FTP server refused... | false |
78 | 12,678,588 | 952,242 | public static boolean encodeFileToFile(String infile, String outfile) {
boolean success = false;
java.io.InputStream in = null;
java.io.OutputStream out = null;
try {
in = new Base64.InputStream(new java.io.BufferedInputStream(new java.io.FileInputStream(infile)), Base64.... | public void convert(File src, File dest) throws IOException {
InputStream in = new BufferedInputStream(new FileInputStream(src));
DcmParser p = pfact.newDcmParser(in);
Dataset ds = fact.newDataset();
p.setDcmHandler(ds.getDcmHandler());
try {
FileFormat format = p... | true |
79 | 21,395,181 | 22,135,738 | @Test
public void test20_badSmtp() throws Exception {
Db db = DbConnection.defaultCieDbRW();
try {
db.begin();
oldSmtp = Config.getProperty(db, "com.entelience.mail.MailHelper.hostName", "localhost");
oldSupport = Config.getProperty(db, "com.entelience.esis.fe... | protected void sort(double[] a) throws Exception {
for (int i = a.length - 1; i >= 0; i--) {
boolean swapped = false;
for (int j = 0; j < i; j++) {
if (a[j] > a[j + 1]) {
double d = a[j];
a[j] = a[j + 1];
a[j... | false |
80 | 19,338,729 | 19,898,737 | public static InputStream call(String serviceUrl, Map parameters) throws IOException, RestException {
StringBuffer urlString = new StringBuffer(serviceUrl);
String query = RestClient.buildQueryString(parameters);
HttpURLConnection conn;
if ((urlString.length() + query.length() + 1) >... | private void updateSystem() throws IOException {
String stringUrl="http://code.google.com/p/senai-pe-cronos/downloads/list";
try {
url = new URL(stringUrl);
} catch (MalformedURLException ex) {
ex.printStackTrace();
}
InputStream is = url.openStream(... | false |
81 | 16,845,107 | 7,321,949 | public boolean copyFile(File destinationFolder, File fromFile) {
boolean result = false;
String toFileName = destinationFolder.getAbsolutePath() + "/" + fromFile.getName();
File toFile = new File(toFileName);
FileInputStream from = null;
FileOutputStream to = null;
tr... | private boolean saveLOBDataToFileSystem() {
if ("".equals(m_attachmentPathRoot)) {
log.severe("no attachmentPath defined");
return false;
}
if (m_items == null || m_items.size() == 0) {
setBinaryData(null);
return true;
}
final ... | true |
82 | 8,661,929 | 2,446,253 | public int addLocationInfo(int id, double lattitude, double longitude) {
int ret = 0;
Connection conn = null;
PreparedStatement psmt = null;
try {
String sql = "insert into kddb.location_info (user_id, latitude, longitude) values(?, ?, ?)";
conn = getConnectio... | private int renumberOrderBy(long tableID) throws SnapInException {
int count = 0;
Connection con = null;
Statement stmt = null;
ResultSet rs = null;
try {
con = getDataSource().getConnection();
con.setAutoCommit(false);
stmt = con.createSta... | true |
83 | 21,293,476 | 716,032 | public void addGames(List<Game> games) throws StadiumException, SQLException {
Connection conn = ConnectionManager.getManager().getConnection();
conn.setAutoCommit(false);
PreparedStatement stm = null;
ResultSet rs = null;
try {
for (Game game : games) {
... | public void getZipFiles(String filename) {
try {
String destinationname = "c:\\mods\\peu\\";
byte[] buf = new byte[1024];
ZipInputStream zipinputstream = null;
ZipEntry zipentry;
zipinputstream = new ZipInputStream(new FileInputStream(filename));
... | false |
84 | 1,244,216 | 3,078,767 | public String postEvent(EventDocument eventDoc, Map attachments) {
if (eventDoc == null || eventDoc.getEvent() == null) return null;
if (queue == null) {
sendEvent(eventDoc, attachments);
return eventDoc.getEvent().getEventId();
}
if (attachments != null) {
... | public static void copyFile(File source, File dest) throws IOException {
FileChannel in = null, out = null;
try {
in = new FileInputStream(source).getChannel();
out = new FileOutputStream(dest).getChannel();
in.transferTo(0, in.size(), out);
} catch (FileN... | true |
85 | 22,328,848 | 4,411,141 | protected void doRestoreOrganizeTypeRelation() throws Exception {
Connection con = null;
PreparedStatement ps = null;
ResultSet result = null;
String strDelQuery = "DELETE FROM " + Common.ORGANIZE_TYPE_RELATION_TABLE;
String strSelQuery = "SELECT parent_organize_type,child_or... | private void addDocToDB(String action, DataSource database) {
String typeOfDoc = findTypeOfDoc(action).trim().toLowerCase();
Connection con = null;
try {
con = database.getConnection();
con.setAutoCommit(false);
checkDupDoc(typeOfDoc, con);
Str... | true |
86 | 17,001,260 | 8,364,547 | public static void getGPX(String gpxURL, String fName) {
try {
URL url = new URL(gpxURL);
HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
urlConnection.setRequestMethod("GET");
urlConnection.setDoOutput(true);
urlConnect... | @Override
public void executeInterruptible() {
encodingTerminated = false;
File destinationFile = null;
try {
Runtime runtime = Runtime.getRuntime();
IconAndFileListElement element;
while ((element = getNextFileElement()... | false |
87 | 11,594,590 | 4,860,089 | public <T extends FetionResponse> T executeAction(FetionAction<T> fetionAction) throws IOException {
URL url = new URL(fetionAction.getProtocol().name().toLowerCase() + "://" + fetionUrl + fetionAction.getRequestData());
URLConnection connection = url.openConnection();
InputStream in = conne... | public int[] sort() {
int i, tmp;
int[] newIndex = new int[nrows];
for (i = 0; i < nrows; i++) {
newIndex[i] = i;
}
boolean change = true;
if (this.ascending) {
if (data[0][column] instanceof Comparable) {
while (change) {
... | false |
88 | 1,637,147 | 547,576 | protected PredicateAnnotationRecord generatePredicateAnnotationRecord(PredicateAnnotationRecord par, String miDescriptor) {
String annotClass = par.annotation.getType().substring(1, par.annotation.getType().length() - 1).replace('/', '.');
String methodName = getMethodName(par);
String hashK... | public static void main(String argv[]) {
System.out.println("Starting URL tests");
System.out.println("Test 1: Simple URL test");
try {
URL url = new URL("http", "www.fsf.org", 80, "/");
if (!url.getProtocol().equals("http") || !url.getHost().equals("www.fsf.org") || ... | false |
89 | 189,777 | 21,224,683 | public void convert(File src, File dest) throws IOException {
InputStream in = new BufferedInputStream(new FileInputStream(src));
DcmParser p = pfact.newDcmParser(in);
Dataset ds = fact.newDataset();
p.setDcmHandler(ds.getDcmHandler());
try {
FileFormat format = p... | public void delete(String user) throws FidoDatabaseException {
try {
Connection conn = null;
Statement stmt = null;
try {
conn = fido.util.FidoDataSource.getConnection();
conn.setAutoCommit(false);
stmt = conn.createStatemen... | false |
90 | 5,935,063 | 19,462,026 | public String generateKey(Message msg) {
String text = msg.getDefaultMessage();
String meaning = msg.getMeaning();
if (text == null) {
return null;
}
MessageDigest md5;
try {
md5 = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgori... | public void copy(final File source, final File dest) throws IOException {
final FileInputStream in = new FileInputStream(source);
try {
final FileOutputStream out = new FileOutputStream(dest);
try {
final FileChannel inChannel = in.getChannel();
... | false |
91 | 13,626,014 | 23,247,146 | public void createPartControl(Composite parent) {
FormToolkit toolkit;
toolkit = new FormToolkit(parent.getDisplay());
form = toolkit.createForm(parent);
form.setText("Apple Inc.");
toolkit.decorateFormHeading(form);
form.getBody().setLayout(new GridLayout());
... | @Override
public synchronized HttpURLConnection getTileUrlConnection(int zoom, int tilex, int tiley) throws IOException {
HttpURLConnection conn = null;
try {
String url = getTileUrl(zoom, tilex, tiley);
conn = (HttpURLConnection) new URL(url).openConnection();
} ... | false |
92 | 1,663,419 | 22,642,186 | private static void copyFile(File in, File out) throws IOException {
FileChannel inChannel = new FileInputStream(in).getChannel();
FileChannel outChannel = new FileOutputStream(out).getChannel();
try {
inChannel.transferTo(0, inChannel.size(), outChannel);
} catch (IOExce... | @Override
protected int run(CmdLineParser parser) {
final List<String> args = parser.getRemainingArgs();
if (args.isEmpty()) {
System.err.println("summarysort :: WORKDIR not given.");
return 3;
}
if (args.size() == 1) {
System.err.println("summ... | true |
93 | 17,267,680 | 11,103,449 | private String transferWSDL(String wsdlURL, String userPassword) throws WiseConnectionException {
String filePath = null;
try {
URL endpoint = new URL(wsdlURL);
HttpURLConnection conn = (HttpURLConnection) endpoint.openConnection();
conn.setDoOutput(false);
... | @Override
public void run() {
try {
IOUtils.copy(_is, processOutStr);
} catch (final IOException ioe) {
proc.destroy();
} finally {
IOUtils.closeQuietly(_is);
IOUtils.closeQuietly(processOutStr);
... | true |
94 | 11,245,902 | 11,334,494 | public static void uploadFile(File in, String out, String host, int port, String path, String login, String password, boolean renameIfExist) throws IOException {
FTPClient ftp = null;
try {
m_logCat.info("Uploading " + in + " to " + host + ":" + port + " at " + path);
ftp = n... | public void store(Component component, String componentName, int currentPilot) {
try {
PreparedStatement psta = jdbc.prepareStatement("UPDATE component_prop " + "SET size_height = ?, size_width = ?, pos_x = ?, pos_y = ? " + "WHERE pilot_id = ? " + "AND component_name = ?");
psta.setI... | false |
95 | 7,344,728 | 15,286,502 | public static String hash(String plainText) throws Exception {
MessageDigest m = MessageDigest.getInstance("MD5");
m.update(plainText.getBytes(), 0, plainText.length());
String hash = new BigInteger(1, m.digest()).toString(16);
if (hash.length() == 31) {
hash = "0" + hash... | public static String md5(String senha) {
MessageDigest md = null;
try {
md = MessageDigest.getInstance("MD5");
} catch (NoSuchAlgorithmException e) {
System.out.println("Ocorreu NoSuchAlgorithmException");
}
md.update(senha.getBytes());
byte[] ... | true |
96 | 13,521,323 | 346,058 | public static void copyFile(final String inFile, final String outFile) {
FileChannel in = null;
FileChannel out = null;
try {
in = new FileInputStream(inFile).getChannel();
out = new FileOutputStream(outFile).getChannel();
in.transferTo(0, in.size(), out);... | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | true |
97 | 708,766 | 557,734 | private static void readAndRewrite(File inFile, File outFile) throws IOException {
ImageInputStream iis = ImageIO.createImageInputStream(new BufferedInputStream(new FileInputStream(inFile)));
DcmParser dcmParser = DcmParserFactory.getInstance().newDcmParser(iis);
Dataset ds = DcmObjectFactor... | public void constructAssociationView() {
String className;
String methodName;
String field;
boolean foundRead = false;
boolean foundWrite = false;
boolean classWritten = false;
try {
AssocView = new BufferedWriter(new FileWriter("InfoFiles/Associat... | true |
98 | 7,346,958 | 16,005,909 | public static String SHA1(String text) throws NoSuchAlgorithmException, UnsupportedEncodingException {
MessageDigest md;
md = MessageDigest.getInstance("SHA-1");
byte[] sha1hash = new byte[40];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
sha1hash = md.digest();
... | public static byte[] hash(String identifier) {
if (function.equals("SHA-1")) {
try {
MessageDigest md = MessageDigest.getInstance(function);
md.reset();
byte[] code = md.digest(identifier.getBytes());
byte[] value = new byte[KEY_LEN... | true |
99 | 8,023,601 | 10,896,362 | protected static List<Pattern> getBotPatterns() {
List<Pattern> patterns = new ArrayList<Pattern>();
try {
Enumeration<URL> urls = AbstractPustefixRequestHandler.class.getClassLoader().getResources("META-INF/org/pustefixframework/http/bot-user-agents.txt");
while (urls.hasMor... | private HttpResponse executePutPost(HttpEntityEnclosingRequestBase request, String content) {
try {
if (LOG.isTraceEnabled()) {
LOG.trace("Content: {}", content);
}
StringEntity e = new StringEntity(content, "UTF-8");
e.setContentType("applicat... | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.