gpt4 book ai didi

java - 如何创建一个全局 FileInputStream 对象,该对象可以从我的项目中的其他类访问?

转载 作者:行者123 更新时间:2023-12-01 13:28:38 25 4
gpt4 key购买 nike

我想做的是创建一个全局 FileInputStream 对象并在我的应用程序中长期使用它。

我有以下类,它创建我的 FileInputStream 对象并返回对 XML 文件的查询结果:

package Engine;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.ArrayList;
import com.ximpleware.AutoPilot;
import com.ximpleware.VTDException;
import com.ximpleware.VTDGen;
import com.ximpleware.VTDNav;

public class BACENGQueryXMLbyVTD {
public String query;
public String path;
public BACENGQueryXMLbyVTD(String query, String path) {
this.query = query;
this.path = path;
}
public ArrayList query() throws IOException, VTDException {
System.out.println(path);
File f = new File(path);
//System.out.println(f);
FileInputStream fis = new FileInputStream(f);
//System.out.println(fis);
byte[] xmlContent = new byte[(int) f.length()];
fis.read(xmlContent);
VTDGen vg = new VTDGen();
vg.setDoc(xmlContent);
vg.parse(false);
VTDNav vn = vg.getNav();
AutoPilot ap = new AutoPilot(vn);
int node = 0;
ap.selectXPath(query);
int i;
ArrayList<String> interfaces = new ArrayList<String>();
while ((i = ap.evalXPath()) != -1) {
vn.push();
interfaces.add(vn.toString(i + 1));
}
ap.resetXPath();
return interfaces;
}
}

这个类是从我的主类调用的,它有一个循环。

 for (int c = 0; c < nodeNames.size(); c++) {
String Queries2 = "/import_data/group/node[@name='" +nodeNames.get(c) + "']/interface/@network_value";
BACENGQueryXMLbyVTD getNodesInterfaces = new BACENGQueryXMLbyVTD(Queries2, TransitPath);
listOfNodeInterfaces = getNodesInterfaces.query();
}

它工作正常,但是为了减少我的服务器 HD 上 IO 资源的消耗。我想创建一个唯一的 FileInputStream 对象并将其用于必须执行的每个查询。

有人可以指出这样做的方法吗?

最佳答案

Separate your concerns - BACENGQueryXMLbyVTD 正在加载数据并执行查询。

首先将文件加载到循环外部的 byte[] 中,然后将其传递给 BACENGQueryXMLbyVTD。您可能还想将 query 作为参数传递给 query 方法。

您最终会得到一个看起来像这样的 BACENGQueryXMLbyVTD (附带声明,我不熟悉 VTD-XML,因此从该 API 创建对象可能不起作用就像这样):

public class BACENGQueryXMLbyVTD 
{
private byte[] doc;


public BACENGQueryXMLbyVTD(byte[] doc)
{
this.doc = doc;
}

public List<String> query(String query) throws IOException, VTDException
{
VTDGen generator = new VTDGen();
generator.setDoc(doc);
generator.parse(false);

VTDNav navigator = generator.getNav();

AutoPilot autoPilot = new AutoPilot(navigator);
autoPilot.selectXPath(query);

List<String> nodeInterfaces = new ArrayList<String>();

int i;
while ((i = autoPilot.evalXPath()) != -1)
{
navigator.push();
nodeInterfaces.add(navigator.toString(i + 1));
}

return nodeInterfaces;
}
}

然后你可以这样调用:

byte[] xmlContent = ... //load the xml from anywhere you like, not just a file as previously.

BACENGQueryXMLbyVTD getNodesInterfaces = new BACENGQueryXMLbyVTD(xmlContent);

for (String nodeName : nodeNames)
{
String query = "/import_data/group/node[@name='" + nodeName + "']/interface/@network_value";
nodeInterfaces = getNodesInterfaces.query(query);
...
}

您可能还想切换到标准 Java XPATH API - 它们比 VTD-XML 更清晰、记录更完善。

关于java - 如何创建一个全局 FileInputStream 对象,该对象可以从我的项目中的其他类访问?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21680005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com