Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hi I need to execute vi command from java and need to store into a local file . I am using jcraft.jsch

import java.io.BufferedWriter;
import java.io.File;
import java.io.FileWriter;
import java.io.InputStream;
import java.io.OutputStream;

import com.jcraft.jsch.Channel;
import com.jcraft.jsch.ChannelExec;
import com.jcraft.jsch.JSch;
import com.jcraft.jsch.Session;

public class ViDAO {

    public boolean mergeLogs(String hostName, String logFile, String userName,
            String password) {
        System.out.println("in VIdao" + hostName);
        String command = null;
        final int MAXREAD = 131072 * 100;

        try {

            command = "cd /dr/logs/sonic/dmbain1;view " + logFile;
            JSch jsch = new JSch();
            Session session = jsch.getSession(userName, hostName, 22);
            java.util.Properties config = new java.util.Properties();
            config.put("StrictHostKeyChecking", "no");
            session.setConfig(config);
            session.setPassword("Janu$113");

            session.connect();
            /* System.out.println("Connected to******* " + host+"*********");*/
            Channel channel = session.openChannel("exec");
            ((ChannelExec) channel).setCommand(command);

            channel.setXForwarding(true);
            channel.connect();


            InputStream in = channel.getInputStream();

            byte[] tmp = new byte[MAXREAD];
            File dir = new File("C:\\Documents and Settings\\" + 
                        System.getProperty("user.name") + 
                        "\\Desktop\\LogFiles");
            dir.mkdir();

            File f;
              f=new File("C:\\Documents and Settings\\" + 
                           System.getProperty("user.name") +
                           "\\Desktop\\LogFiles\\" +
                           logFile + ".txt");

              if(!f.exists()){

              f.createNewFile();
              }

              BufferedWriter out = new BufferedWriter(new FileWriter(f));



            while (true) {
                while (in.available() > 0) {

                    int i = in.read(tmp, 0, MAXREAD);

                    if (i < 0)
                        break;
                    String strResult = new String(tmp, 0, i);

                    out.write(strResult+"\n");
                    System.out.println(strResult);

                }
                if (channel.isClosed()) {
                    in.close();

                    break;
                }

            }

            System.out.println("completed");

            channel.disconnect();
            session.disconnect();
            out.close();


        } catch (Exception e) {
            e.printStackTrace();
        }

return true;
    }

    public static void main(String[] args) {

    }
}

Here i am unable to read the file only some lines of code only i am able to read please help on this. when i use tail command instead of vi its working but processing long time.If i use vi command only some lines iam able to print.

please help on this...

share|improve this question

1 Answer

view is usually aliased to vi which requires an actual terminal or terminal emulator console to work, since it uses the terminal in raw mode.

When confronted with a non-terminal output, vi will print a warning and then start spewing the first "screenfull" of file contents intermixed with control characters - for most automated processing uses that output is almost useless.

If you want to read in the contents of a remote file, you should probably use cat instead of vi.

share|improve this answer
Do you have any sample code to read using cat command? I need to read log files. Here in the above program I am reading into String is there any best way to read the file into local text file? Kindly provide suggestions. – shiva tatikonda Jan 26 at 17:21
@shivatatikonda: just replace view with cat in your program. – thkala Jan 26 at 17:24
ok boss will try wit cat and let u know thanks. – shiva tatikonda Jan 26 at 19:05
Yes it works thank you boss..! – shiva tatikonda Jan 28 at 16:57
I need to read .gz file in the above program Can you please tell me how to read gz file into textfile? – shiva tatikonda Jan 29 at 6:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.