我正在Grails项目中构建一个功能,用户可以在其中单击主窗体上的按钮,并使用安全FTP读取远程日志文件的内容。我要做的是将该日志文件的内容显示在Grails页面上。我不确定该怎么办,互联网搜索仍然没有结果。
这是读取日志的方法,我很快就将其汇总在一起。不确定如何将正在读取的文件内容转储到grails页面。任何帮助表示赞赏。
P.S。我敢肯定,在Groovy中有一种更简单的方法可以执行以下方法。
def getLogFile() {
JSch jsch = new JSch();
Session session = null;
try {
String username = "joesmith"
String password = "mypassword"
String hostname = "123.456.78.910"
String x
// connect to the server through secure ftp
session = jsch.getSession(username, hostname, 22);
session.setConfig("StrictHostKeyChecking", "no");
session.setPassword(password);
session.connect();
ChannelSftp channel = (ChannelSftp)session.openChannel("sftp");
channel.connect();
log.info("Session Connected, reading log file...");
ChannelSftp sftpChannel = (ChannelSftp) channel;
sftpChannel.cd("/usr/tmp")
java.io.InputStream stream = sftpChannel.get("mylog.txt");
BufferedReader br = new BufferedReader(new InputStreamReader(stream));
while ((x = br.readLine()) != null) {
log.info("line is " + x)
}
} catch (JSchException e) {
e.printStackTrace();
} catch (SftpException e) {
e.printStackTrace();
}
答案 0 :(得分:1)
有几种方法可以做到这一点,有些方法比其他方法更安全。如果您的日志文件太大,则在显示它们时会遇到问题。您还可以考虑编码和安全方面的问题。
最简单,最快的方法就是使用render
方法将字符串转储到控制器调用内的页面中:
def stringBuilder = new StringBuilder()
while ((x = br.readLine()) != null) {
stringBuilder.append(x)
}
render(text: stringBuilder.toString(), contentType: "text/plain", encoding: "UTF-8")
根据日志文件中的内容,这可能不是我的方法,但回答您的问题。