问题标签 [netbeans-8.1]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
1300 浏览

debugging - 无法在 Netbeans 中添加调试源

在 Netbeans 8.1 中,我正在尝试调试一些文件,但 Netbeans 不允许我将它们添加为调试源。要添加源,我单击了Window > Debugging > Sources。然后在Sources选项卡中,我右键单击并选择Add Source Root。然后我选择了源文件夹并单击添加,但没有添加任何内容。

0 投票
1 回答
347 浏览

jakarta-ee - 在 NetBeans 中使用 JRebel

我有一个在 WildFly 10.0.0 final 上运行的 Java EE 应用程序,它具有以下图表结构(它不使用 Apache Maven)。

在此处输入图像描述

我正在为 NetBeans (8.1)使用JRebel 6.4.1 。它在 Web 应用程序(因此不是企业应用程序)中运行良好,但在企业应用程序中,当更改EE模块或类库中的 Java 文件(如上图所示)是同步的。

在此处输入图像描述

当对 Web 模块的更改同步时,该消息不会出现。

尽管有消息,对 EE 模块所做的更改会在模块同步时传播,但对类库的更改不会在同步时传播。

由于应用程序在 localhost 上运行,JRebel 远程服务器当前已关闭。是否需要在项目属性对话框中设置服务器 URL?这种情况下的 URL 是什么?

任何其他建议,以防万一我遗漏了什么?

在此处输入图像描述

0 投票
1 回答
586 浏览

pdfbox - 在netbeans 8.1中使用pdfbox将pdf转换为文本

我试图将 pdf 文档转换为文本,但我得到一个空指针异常..不明白为什么会出现错误。错误显示在导入语句中。我附上下面的代码:

0 投票
2 回答
365 浏览

java - 将程序的输出写入文件

我编写了一个程序来将 pdf 解析为文本。我在控制台中获取输出,但我无法将其写入文件。这是我所做的代码:

输出是:

并且解析的pdf文本出现在控制台中..但我得到一个空文件作为输出

0 投票
1 回答
81 浏览

java - 将解析后的文本写入 textarea

我正在尝试将 pdf 文档转换为 txt 格式,并尝试在按下 OK 按钮时将其显示到文本区域。UI 是在 netbeans 8.1 中创建的。没有错误,但我没有得到输出。我附上了下面的代码。

这是我单击按钮运行时得到的错误:java.lang.UnsupportedOperationException:尚不支持。

0 投票
1 回答
82 浏览

java - .JAR Executable file not running properly

I have created a java application which basically scraps data from a website and create a .csv file. It is running fine when I execute it in NetBeans and creates file of 34kb. But, when I build it and run the .JAR executable file it creates the same file but size of the file is 4kb and not bringing all the data. I build the project on java 1.8. I don't understand this issue actually what the reason behind it. Is it the problem with the java version? Thanks in advance for your help. sorry for not adding the code here earlier. here's the code of my project.

here is the log cat file after building the project.

ant -f C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry -Dnb.internal.action.name=rebuild clean jar init: deps-clean: Updating property file: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\built-clean.properties Deleting directory C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build clean: init: deps-jar: Created dir: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build Updating property file: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\built-jar.properties Created dir: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\classes Created dir: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\empty Created dir: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\generated-sources\ap-source-output Compiling 1 source file to C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build\classes warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning compile: Created dir: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\dist Copying 1 file to C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\build Copy libraries to C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\dist\lib. Building jar: C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\dist\com.open_end_smry.jar To run this application from the command line without Ant, try: java -jar "C:\Users\talha\Documents\NetBeansProjects\com.open_end_smry\dist\com.open_end_smry.jar" jar: BUILD SUCCESSFUL (total time: 0 seconds)

0 投票
0 回答
27 浏览

java - Java中的Netbeans调试 - 不同的执行

当我使用 netbeans 调试用 Java 开发的应用程序时,出现错误(错误来自 c++ dll)。如果我通过命令行执行生成的 jar 一切正常。

您能否提供理由来调查为什么调试对库的调用不起作用以及为什么执行编译后的 jar 会起作用?

我正在使用全新安装的最新 netbeans 版本。

0 投票
1 回答
137 浏览

java - netbeans输出线重叠


我正在使用 netbeans IDE 8.1 && Java-7-openjdk 和 jdk-8u66-linux-x64
使用 linux ubuntu 或 linux mint 时会出现问题,但使用 windows 操作系统时不会出现

问题是当使用 Scanner 时,它会丢弃新行并弄乱输出

示例这是代码:

我得到的输出:

我希望的输出:

有什么帮助吗?

0 投票
0 回答
229 浏览

jmeter - netbeans 的 jmeter 插件的外部编辑器中缺少工具栏

通过 jmeter-plugin 在 NetBeans 中打开 .jmx 文件时,编辑器窗口中的顶部工具栏以及一些菜单选项丢失。请参阅两个屏幕截图:Netbeans的屏幕截图。 来自 jmeter 独立的屏幕截图

任何人都知道是否可以从 Netbeans 中访问“完整”版本的 jmeter 编辑器(即通过右键单击项目中的 .jmx 文件并选择“外部编辑”),如果可以,如何?

0 投票
1 回答
99 浏览

c - 使用 Netbeans 测量执行 C 程序的时间

我对 Netbeans 有疑问。这是我的代码:

当我在 Netbeans 8.1 上运行程序时,输出为 0.000000,但在 Dev C 上尝试时为 0.2100000。