首页 \ 问答 \ Eclipse Juno:Windows“打开文件”对话框不起作用(Eclipse Juno: Windows “Open File” dialog box does not work)

Eclipse Juno:Windows“打开文件”对话框不起作用(Eclipse Juno: Windows “Open File” dialog box does not work)

我最近从Indigo转到Eclipse Juno。 尽管Juno在我的需求下工作得很好,但是由于某些原因,Windows “打开”对话框不会加载。 例如,文件/打开文件不起作用。

这是一个问题,我们需要包含一个文件,如添加外部JAR或任何其他需要从Windows目录添加文件的地方。 “包含目录”确实可以在我需要获取目录的地方工作,但问题仅在于文件对话框。

我有一个Windows 7 64位,它是一个带有Java和CDT插件的Eclipse。 重新安装eclipse将是最后的手段,因为我需要重新配置40多个项目,因为我们在这里有一个非常特殊的设置。

我确实尝试研究这个,但几乎找不到更多的细节..任何指针来解决这个问题将不胜感激。

编辑:只是想添加工具提示在我将鼠标放在不同的图标/文件上时不起作用,不确定这是否相关但只是想提及。 此外,我尝试将我的日食更新到开普勒,但它仍然无效,我现在想知道我的Windows 7是否与此有关...?


I recently move to Eclipse Juno from Indigo. Although Juno works perfectly as far as my needs the windows "Open" dialog box does not load for some reason. For example, File/Open File does not work.

This is a problem across all places where we need to include a file like adding external JARs or any other place where files need to be added from a windows directory. "Include Directory" does work where I need to get the directory included but the issue is only with file dialog box.

I have a Windows 7 64 bit and it’s a Eclipse with Java & CDT plug-in. Reinstalling eclipse would be a last resort as I would need to re-configure 40+ projects again as we have a very peculiar setup here.

I did try to research this but hardly could find more details.. Any pointers to fix this issue will be greatly appreciated.

Edit: Just wanted to add that tooltip does not work up when I hower mouse on the different icons/files ect, not sure if this is related but just wanted to mention. Also, I tried updating my eclipse to Kepler but it still does not work, I am now wondering if my Windows 7 has something to do with this..?


原文:https://stackoverflow.com/questions/21197096
更新时间:2024-02-02 08:02

最满意答案

是的,这是CTP的一个已知错误( 我的博客 ; Lucian Wischik的博客 )。 它将在完整版本中修复。


Yes, this is a known bug with the CTP (my blog; Lucian Wischik's blog). It'll be fixed in the full release.

相关问答

更多
  • 带有g标志的string.match只返回与完整正则表达式匹配的字符串。 你想要的是捕获组,你需要使用RegExp.exec 像这样的东西: var text="lots of stuff with something in here a few times so that something comes back multiple times when searching for something."; var regex=new RegExp("some(thing)","g"); var res ...
  • 你也应该得到一个BeginGetScannedDocuments和EndGetScannedDocuments ,你可以使用TaskFactory.FromAsync进行包装。 我有一篇博客文章,展示了如何在老派(4.5之前)WCF (服务器和客户端)上使用任务包装器 。 You should also be getting a BeginGetScannedDocuments and EndGetScannedDocuments, which you can wrap using TaskFactory. ...
  • 您的主要功能是异步的,但您正在使用未声明为async的箭头函数await userProfiles$.subscribe(async res => { if (res == null) { await userProfile.set({ ... Your main function is async but you’re using await in an arrow function which isn’t declared as async userProfiles$.subscribe( ...
  • 有一点非常重要,那就是使用三种独立的异步代码模式( AsyncManager , ContinueWith和AsyncManager ),而不是仅仅使用AsyncManager 。 另一件重要的事情是你要返回一个ActionResult - 表明这是一个ASP.NET应用程序 - 但还没有谈到“UI线程”。 ASP.NET上没有 UI线程。 因此,我将“冻结UI”重新解释为“在处理程序完成之前不会返回结果”,这正是ASP.NET 应该如何工作的。 因此,首先,删除所有不必要的AsyncManager , C ...
  • 如果await运算符后面的表达式的值不是Promise,它将转换为已解析的Promise。 readStream.on不会返回一个承诺,所以你的代码不会像你期望的那样工作。 而不是使用await ,将readStream.on包装在Promise并在其结束时resolve 。 function hash_file(key) { // open file stream const readStream = fs.createReadStream("./foo.js"); const h ...
  • 是的,这是CTP的一个已知错误( 我的博客 ; Lucian Wischik的博客 )。 它将在完整版本中修复。 Yes, this is a known bug with the CTP (my blog; Lucian Wischik's blog). It'll be fixed in the full release.
  • 您遇到的问题与您正确使用的async/await无关。 await不会返回太早,只是进度条更新太迟。 换句话说,这是几个线程中描述的进度条控件特定问题 - 更改值时禁用.NET progressbar动画? , 禁用WinForms ProgressBar动画 , 在进度条达到100%之前触发RunWorkerCompleted等。您可以使用这些线程中提供的其中一种解决方法。 The problem you are experiencing is not related to the async/await ...
  • 这有效: from sympy import * x = symbols('x') P = x**6-14*x**4+49*x**2-36 I = integrate(1/expand(P), (x, S.One/3, S.One/2)) 我得到了结果: In [5]: I Out[5]: -3*log(3)/80 - log(7)/48 - log(2)/48 - log(8)/240 + log(10)/240 + log(4)/48 + 3*log(5)/80 In [6]: I.n() Out ...
  • async/await有点棘手。 让我们仔细看看你的方法: private static async Task RunTest2Async() { Console.WriteLine("Test 2\n======"); await TestCreationAsync(); DisplayCounts(); } 该方法在控制台上打印一些东西。 然后它调用TestCreationAsync()并返回一个Task句柄。 该方法将自己注册为任务的后继并返回任务句柄本身。 编译器将该方法转 ...
  • 他们是不同的抽象。 这个答案中的所有内容同样适用于JavaScript和C#。 async / await允许您异步等待单个异步操作。 这个“异步操作”只能完成一次,只有一个结果。 Observable允许您订阅数据流,并对到达该数据流的数据作出反应。 此订阅模式允许随时间推移的多项数据。 They are different abstractions. Everything in this answer applies equally to JavaScript and C#. async/await a ...

相关文章

更多

最新问答

更多
  • 您如何使用git diff文件,并将其应用于同一存储库的副本的本地分支?(How do you take a git diff file, and apply it to a local branch that is a copy of the same repository?)
  • 将长浮点值剪切为2个小数点并复制到字符数组(Cut Long Float Value to 2 decimal points and copy to Character Array)
  • OctoberCMS侧边栏不呈现(OctoberCMS Sidebar not rendering)
  • 页面加载后对象是否有资格进行垃圾回收?(Are objects eligible for garbage collection after the page loads?)
  • codeigniter中的语言不能按预期工作(language in codeigniter doesn' t work as expected)
  • 在计算机拍照在哪里进入
  • 使用cin.get()从c ++中的输入流中丢弃不需要的字符(Using cin.get() to discard unwanted characters from the input stream in c++)
  • No for循环将在for循环中运行。(No for loop will run inside for loop. Testing for primes)
  • 单页应用程序:页面重新加载(Single Page Application: page reload)
  • 在循环中选择具有相似模式的列名称(Selecting Column Name With Similar Pattern in a Loop)
  • System.StackOverflow错误(System.StackOverflow error)
  • KnockoutJS未在嵌套模板上应用beforeRemove和afterAdd(KnockoutJS not applying beforeRemove and afterAdd on nested templates)
  • 散列包括方法和/或嵌套属性(Hash include methods and/or nested attributes)
  • android - 如何避免使用Samsung RFS文件系统延迟/冻结?(android - how to avoid lag/freezes with Samsung RFS filesystem?)
  • TensorFlow:基于索引列表创建新张量(TensorFlow: Create a new tensor based on list of indices)
  • 企业安全培训的各项内容
  • 错误:RPC失败;(error: RPC failed; curl transfer closed with outstanding read data remaining)
  • C#类名中允许哪些字符?(What characters are allowed in C# class name?)
  • NumPy:将int64值存储在np.array中并使用dtype float64并将其转换回整数是否安全?(NumPy: Is it safe to store an int64 value in an np.array with dtype float64 and later convert it back to integer?)
  • 注销后如何隐藏导航portlet?(How to hide navigation portlet after logout?)
  • 将多个行和可变行移动到列(moving multiple and variable rows to columns)
  • 提交表单时忽略基础href,而不使用Javascript(ignore base href when submitting form, without using Javascript)
  • 对setOnInfoWindowClickListener的意图(Intent on setOnInfoWindowClickListener)
  • Angular $资源不会改变方法(Angular $resource doesn't change method)
  • 在Angular 5中不是一个函数(is not a function in Angular 5)
  • 如何配置Composite C1以将.m和桌面作为同一站点提供服务(How to configure Composite C1 to serve .m and desktop as the same site)
  • 不适用:悬停在悬停时:在元素之前[复制](Don't apply :hover when hovering on :before element [duplicate])
  • 常见的python rpc和cli接口(Common python rpc and cli interface)
  • Mysql DB单个字段匹配多个其他字段(Mysql DB single field matching to multiple other fields)
  • 产品页面上的Magento Up出售对齐问题(Magento Up sell alignment issue on the products page)