小编Lah*_*zey的帖子

Java 在 Eclipse 中授予管理员权限

我正在编写一个应用程序,它应该能够将文本文件保存到任何位置。当我在 Eclipse 中运行代码时,出现以下异常:

java.io.FileNotFoundException: C:\myFile.txt (Zugriff verweigert)

“Zugriff verwiegert”是德语,表示许可被拒绝

不过,我可以写入C:\Users\MyUser\Documents

我做了一些研究,发现应用程序需要管理员权限。如果这是真的,我如何在 eclipse 中以管理员身份运行它?

我写文件的代码:

try {
        PrintWriter writer = new PrintWriter("C:\\myFile.txt", "UTF-8");
        writer.print(script.toString());
        writer.close();
} catch (FileNotFoundException | UnsupportedEncodingException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
}
Run Code Online (Sandbox Code Playgroud)

编辑:Stackoverflow 将我的问题与以下问题相关联: 如何从 Java 提升我的 UAC 权限? 但是我想知道在eclipse中是否有可能!;D

java eclipse

3
推荐指数
1
解决办法
2894
查看次数

未捕获的ReferenceError:$未定义JSF Primefaces(h:包含头部)

我有一个简单的JSF页面,显示来自primefaces(Showcase)的文本编辑器.
但是,不显示文本编辑器.当我检查它(铬中的F12)时,我看到多个错误,第一个是:

core.js.xhtml:2 Uncaught ReferenceError: $ is not defined
at Object.resolveUserAgent (core.js.xhtml:2)
at Object.init (core.js.xhtml:2)
at core.js.xhtml:2
Run Code Online (Sandbox Code Playgroud)

其他是Uncaught TypeError:无法读取未定义的属性' 来自Primefaces标签 '.



我读了这些问题:1/2,但我确实有 <h:head>.
我错过了什么?

我的页面(index.xhtml):

<h:html xmlns="http://www.w3.org/1999/xhtml"
xmlns:b="http://bootsfaces.net/ui"
xmlns:p="http://primefaces.org/ui"  
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html">
<h:head>
    <h:outputStylesheet library="css" name="style.css"  />
    <h:outputScript library="js" name="script.js" />
</h:head>
<h:body>
    <p:textEditor value="#{textEditorController.text}" height="300" style="margin-bottom:10px"/>
    <p:commandButton value="Submit" action="#{textEditorController.submit}"/>
</h:body>
</h:html>
Run Code Online (Sandbox Code Playgroud)

我的web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1">
  <display-name>MusiglabelWEB</display-name>
  <servlet>
    <servlet-name>Faces Servlet</servlet-name>
    <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
    <load-on-startup>1</load-on-startup>
  </servlet>
  <servlet-mapping> …
Run Code Online (Sandbox Code Playgroud)

jsf primefaces jsf-2

2
推荐指数
1
解决办法
2982
查看次数

标签 统计

eclipse ×1

java ×1

jsf ×1

jsf-2 ×1

primefaces ×1