我有一个html文件,其中有链接,我想知道是否有一种方法可以使用这些链接调用一个java程序来生成另一个html文件?就像这样:<body><A Href=[somehow point to a java .class file to run]>My Link</A></Html>
我知道如何使用Java生成html,我在这里问的是如何向这个本地<e
下面是我的ruby项目,将两个数字相加:Given the input "2+3"Then the output should be "5"Given(/^the input "([^"]*)"$/) do |arg1|end
@output = `ruby calculation.rb #{@input}`
The