com/sun/org/apache/xerces/internal/impl/XMLEntityScanner.java:1414:-1

这个异常是在tomcat启动时出现的,原因是 struts.xml里面是空的,加个<struts></struts>就行
Simulation setting file, output folder and iteration number are not provided! Using default ones... java.io.FileNotFoundException: scripts\DeepEdge\config\default_config.properties (系统找不到指定的路径。) at java.base/java.io.FileInputStream.open0(Native Method) at java.base/java.io.FileInputStream.open(FileInputStream.java:213) at java.base/java.io.FileInputStream.<init>(FileInputStream.java:152) at java.base/java.io.FileInputStream.<init>(FileInputStream.java:106) at edu.boun.edgecloudsim.core.SimSettings.initialize(SimSettings.java:131) at edu.boun.edgecloudsim.applications.deepLearning.TrainingEdge.main(TrainingEdge.java:58) Edge Devices XML cannot be parsed! Terminating simulation... java.io.FileNotFoundException: F:\code\java_code\EdgeCloudSim-DeepEdge\scripts\DeepEdge\config\applications.xml (系统找不到指定的路径。) at java.base/java.io.FileInputStream.open0(Native Method) at java.base/java.io.FileInputStream.open(FileInputStream.java:213) at java.base/java.io.FileInputStream.<init>(FileInputStream.java:152) at java.base/java.io.FileInputStream.<init>(FileInputStream.java:106) at java.base/sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:84) at java.base/sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:180) at java.xml/com.sun.org.apache.xerces.internal.impl.XMLEntityManager.setupCurrentEntity(XMLEntityManager.java:654) at java.xml/com.sun.org.apache.xerces.internal.impl.XMLVersionDetector.determineDocVersion(XMLVersionDetector.java:150) at java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:861) at java.xml/com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:825) at java.xml/com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:141) at java.xml/com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:247) at java.xml/com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.pa
最新发布
03-24
### 解决Java中因缺少配置文件和XML文件引发的FileNotFoundException 在Java应用程序运行过程中,如果某些必要的配置文件或XML文件缺失,则可能会抛出`FileNotFoundException`异常。针对这种情况,可以通过以下方法进行处理: #### 1. 文件路径检查与验证 确保程序能够正确访问所需的文件路径。可以使用绝对路径代替相对路径以减少错误的可能性[^1]。例如,在Spring Boot项目中,通常会将配置文件放置于`src/main/resources`目录下。对于外部文件,建议将其路径硬编码或将路径作为参数传递给程序。 ```java File configFile = new File("path/to/default_config.properties"); if (!configFile.exists()) { throw new FileNotFoundException("The file 'default_config.properties' does not exist."); } ``` #### 2. 使用默认值或备份机制 当主要配置文件丢失时,提供一个备用方案是非常重要的。可以在代码中定义一组默认设置,或者加载另一个预置的配置文件[^2]。 ```java Properties properties = new Properties(); try (InputStream input = Files.newInputStream(Paths.get("path/to/default_config.properties"))) { properties.load(input); } catch (IOException e) { System.out.println("Failed to load the main configuration, using defaults..."); // Load a backup or use hardcoded values. properties.setProperty("key", "defaultValue"); } ``` #### 3. 动态资源管理 利用动态资源配置工具(如Spring Cloud Config),可以从远程服务器获取最新的配置数据,从而降低本地文件依赖的风险[^3]。这种方式特别适合分布式系统中的边缘计算场景(如EdgeCloudSim)。 ```yaml spring: cloud: config: uri: http://localhost:8888 # Remote config server URL ``` #### 4. 日志记录与通知 增强日志功能以便快速定位问题所在。每当尝试读取某个不存在的文件时,都应该生成详细的警告消息并发送邮件或其他形式的通知给管理员[^4]。 ```java Logger logger = LoggerFactory.getLogger(MyApplication.class); try { DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); DocumentBuilder builder = factory.newDocumentBuilder(); Document document = builder.parse(new File("applications.xml")); } catch (SAXException | IOException ex) { logger.error("Error while parsing XML file.", ex); notifyAdmin(ex.getMessage()); } ``` ---
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值