首页 \ 问答 \ 32位eclipse和64位java程序(32bit eclipse and 64bit java program)

32位eclipse和64位java程序(32bit eclipse and 64bit java program)

  • 我在我的64位windows7上有一个稳定的32位eclipse安装用于android编程。
  • 同时我在同一个eclipse(32位)中开发一个简单的java程序(非android,没有jni),我应该在64位jvm中运行(需要更多的堆空间)。

那可能吗 ? (我问,因为我不想通过试验并行安装64位和32位jvm来破坏我的稳定开发环境)

问题换句话说:是否有可能在32位jvm中启动的32位安装eclipse中运行/启动(eclipse中的绿色播放图标)64位jvm中的java程序?

问候


  • I have a stable 32bit eclipse installation on my 64bit windows7 for android programming.
  • In parallel I am developing a simple java program ( non android, no jni's ) within the same eclipse ( 32bit ) that I should run in a 64 bit jvm ( needs more heap space ).

Is that possible ? ( I am asking, because I do not want to destroy my stable development environment by experimenting of installing 64bit and 32bit jvm in parallel )

The question in other words: Is it possible to run/launch ( green play icon in eclipse ) a java program in a 64bit jvm from a 32bit installed eclipse that was started in a 32bit jvm ?

regards


原文:
更新时间:2022-03-28 13:03

最满意答案

解决了它:

  function deleteDeezerPlaylist(playlistId) {
                var postPlaylistAjax = $.ajax({
                    type: 'post',
                    url: 'http://api.deezer.com/playlist/'+encodeURIComponent(playlistId)+'?request_method=DELETE&access_token='+encodeURIComponent(deezerAccessToken)+'&output=jsonp',
                    dataType: 'jsonp',
                    error: ajaxError,
                });
                return postPlaylistAjax.then(function (response) {
                    return response.id;
                });
            }

solved it:

  function deleteDeezerPlaylist(playlistId) {
                var postPlaylistAjax = $.ajax({
                    type: 'post',
                    url: 'http://api.deezer.com/playlist/'+encodeURIComponent(playlistId)+'?request_method=DELETE&access_token='+encodeURIComponent(deezerAccessToken)+'&output=jsonp',
                    dataType: 'jsonp',
                    error: ajaxError,
                });
                return postPlaylistAjax.then(function (response) {
                    return response.id;
                });
            }

相关问答

更多
  • 我有同样的问题,使用域名deezer-dl.local:8888 。 在https://connect.deezer.com/oauth/auth.php上 ,它显示: You must enter a valid redirect uri 我通过将Deezer应用程序首选项中的Application Domain修复为deezer-dl.local (没有端口)并使用标准80端口来解决我的问题... I had the same issue, using domain deezer-dl.local ...
  • 首先,如果你想创建一个私人播放列表,或者只是创建一个公共协作播放列表,你必须得到一个令牌(就像这里: http : //developers.deezer.com/api/explorer )(所以人们可以添加曲目到你的播放列表)。 您要做的第一件事是通过POST调用user / me | [您的用户ID] /播放列表( http://developers.deezer.com/api/user/playlists )和访问令牌来创建播放列表。 然后你只需对/ playlyst [你的播放列表的ID] / ...
  • 通过DZ.player.playPlaylist()加载后,您只能获取播放列表的曲目列表(参见http://developers.deezer.com/sdk/javascript/loadtracks )。 之后,您可以使用DZ.player.getTrackList()来检索队列中的曲目。 You only can get the tracklist of a playlist after you loaded it through DZ.player.playPlaylist() (cf http:/ ...
  • 不幸的是,用Deezer API更新播放列表艺术品是不可能的。 唯一的解决方案是使用前台网站https://www.deezer.com/fr/playlist/(playlist_id) - >编辑按钮 Unfortunately it is not possible to update the playlist artwork with the Deezer API. The only solution is to use the front website https://www.deezer.com ...
  • 使用JavaScript SDK有两种方法可以实现此目的。 1)您可以使用DZ.player.playRadio(radio_id)直接播放收音机 2)如果你真的想要一个固定列表,你可以在http://api.deezer.com/radio/radio_id/tracks上获取曲目列表然后用DZ.player.playTracks(tracks)播放所有DZ.player.playTracks(tracks) 例: DZ.api('/radio/30771/tracks', function(result ...
  • 我确认Get token按钮( https://developers.deezer.com/api/explorer )存在问题。 是的,这是一个尚未确定的已知问题。 您可以按照以下方法生成访问令牌: https : //developers.deezer.com/api/oauth 为了使用OAuth,您还需要在这里创建一个应用程序: https : //developers.deezer.com/myapps/create 确保对于域名域名,验证和使用期限后重定向网址,请指定域名方案 例如: http ...
  • 你能尝试删除你的cookies吗? 如果再次遇到问题,请告诉我。 Can you try deleting your cookies? Please let me know if you get the problem again.
  • 您必须使用的端点不是“/ playlist / me / tracks”,而是“/ user / me / tracks”。 The endpoint you have to use is not "/playlist/me/tracks" but "/user/me/tracks".
  • 事实上,目前Android SDK中没有预加载功能,但我们会针对下一版本的SDK进行调查。 现在确实你可能想要创建第二个播放器以在两个音轨之间平滑过渡。 请注意,Deezer的SDK中最多可同时拥有5个玩家。 Indeed for now there is no preloading feature in the Android SDK, but we will look into this for a next version of the SDK. For now indeed you might wa ...
  • 解决了它: function deleteDeezerPlaylist(playlistId) { var postPlaylistAjax = $.ajax({ type: 'post', url: 'http://api.deezer.com/playlist/'+encodeURIComponent(playlistId)+'?request_method=DELETE&access_t ...

相关文章

更多

最新问答

更多
  • 您如何使用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)