Search Results

Search found 2 results on 1 pages for 'vibhas'.

Page 1/1 | 1 

  • Unreleased Resource: Streams

    - by Vibhas
    Hi freinds i am getting a warning in the fortify report for the following code: if (null != serverSocket) { OutputStream socketOutPutStream = serverSocket .getOutputStream(); if (null != socketOutPutStream) { oos = new ObjectOutputStream(socketOutPutStream); if (null != oos) { int c; log.info("i am in Step 3 ooss " + oos); while ((c = mergedIS.read()) != -1) { oos.writeByte(c); } } log.info("i am in Step 4 "); } } in the catch block i have mentioned : catch (UnknownHostException e) { //catch exception Vibhas added log.info("UnknownHostException occured"); } catch (IOException e) { //catch exception Vibhas added log.info("IOException occured"); } catch (Exception e) { //catch exception //log.info("error occured in copyFile in utils-->"+e.getMessage()+"file name is-->"+destiFileName); }finally{ if (null != oos){ oos.flush(); oos.close(); } catch (Exception e) { //catch exception } } Warning which i am getting in the fortify report is: Abstract: The function copyFile() in ODCUtil.java sometimes fails to release a system resource allocated by getOutputStream() on line 61. Sink: ODCUtil.java:64 oos = new ObjectOutputStream(socketOutPutStream)() 62 if (null != socketOutPutStream) { 63 64 oos = new ObjectOutputStream(socketOutPutStream); 65 if (null != oos) { 66 int c;

    Read the article

  • How to add EAR files in a java console application

    - by Vibhas
    Hi Friends, I want to know how to add an EAR file into a simple java class i.e a standalone application. Let say i have a class Employee package com.Employee; import com.xyz.Workflow//this library is present in EAR file whose method i need to call public class Employee{ public static void main(String[] args) // Wokflow wf = new Workflow(); // ws.initiateWorkflow(); this method needs to be called but for that i need to include this EAR which is given to me from a 3rd party; } Can any one help me the API is in EAR only. Thanks

    Read the article

1