drupal 中的 java 小程序

发布于 2024-10-21 15:44:36 字数 376 浏览 0 评论 0原文

我有一个java小程序,其形式如下所示

$form['applet'] = array(
  '#prefix' => '<div>',
  '#markup' => '<p align=center>
<applet codebase="." code="Clock.class" width=170 height=150>
</applet>
</p>',
  '#suffix' => '</div>',
  );

,我应该将Clock.class文件放置在哪里,以便drupal始终加载它。与base_path函数有关。

i have a java applet in a form like following

$form['applet'] = array(
  '#prefix' => '<div>',
  '#markup' => '<p align=center>
<applet codebase="." code="Clock.class" width=170 height=150>
</applet>
</p>',
  '#suffix' => '</div>',
  );

where should i place Clock.class file such that drupal always loads it.Something to do with base_path function.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

在巴黎塔顶看东京樱花 2024-10-28 15:44:36

如果还有其他类和资源需要加载,您可能需要替换“.”对于具有该目录路径的代码库,而不是更改 .class 文件的路径。

假设您的类文件是子文件夹小程序中模块的一部分,类似这样的内容应该可以工作:(

... codebase = "' . drupal_get_path('module', 'yourmodule') . '/applet/" code...

不确定尾部斜杠是否必要)

If there are other classes and resources that need to be loaded, you probably want to replace the '.' for the codebase with the path to that directory instead of changing the path to the .class file.

Assuming your class file is part of a module in a subfolder applet, something like this should work:

... codebase = "' . drupal_get_path('module', 'yourmodule') . '/applet/" code...

(not sure if the trailing slash is necessary)

飞烟轻若梦 2024-10-28 15:44:36

该 HTML 将使 JRE 期望在与网页相同的目录中找到该类。

That HTML would make the JRE expect to find the class in the same directory as the web page.

峩卟喜欢 2024-10-28 15:44:36

我对小程序不熟悉。但如果您需要为其创建绝对路径,则应将其放置在创建表单的模块中并使用 drupal_get_path

在代码中,这看起来像这样:

$path = drupal_get_path('module', 'MODULE_NAME');

$form['applet'] = array(
  '#prefix' => '<div>',
  '#markup' => '<p align=center>
<applet codebase="'$path'" code="Clock.class" width=170 height=150>
</applet>
</p>',
  '#suffix' => '</div>',
  );

使用上面的代码,您需要将小程序放置在自定义模块的根目录中。如果您愿意,您还可以为您的小程序创建一个子文件夹并将其放置在那里。后者是最 Drupal 的方式,但我倾向于仅在模块中包含超过 3-5 个文件时才创建子文件夹。

I'm not familiar with applets. But if you need to make an absolute path to it, you should place it in the module creating the form and use drupal_get_path.

In code this would look like this:

$path = drupal_get_path('module', 'MODULE_NAME');

$form['applet'] = array(
  '#prefix' => '<div>',
  '#markup' => '<p align=center>
<applet codebase="'$path'" code="Clock.class" width=170 height=150>
</applet>
</p>',
  '#suffix' => '</div>',
  );

Using the above code, you need to place the applet in the root of your custom module. You could also make a subfolder for you applet and place it there if you like. The latter is the most drupal way of doing it, but I tend to only create subfolders if I more than 3-5 files in a module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文