1999text4

When a Scottish research team startled the world by revealing 3 months ago that it had cloned an adult sheep, President Clinton moved swiftly. Declaring that he was opposed to using this unusual animal husbandry technique to clone humans, he ordered that federal funds not be used for such an experiment — although no one had proposed to do so — and asked an independent panel of experts chaired by Princeton President Harold Shapiro to report back to the White House in 90 days with recommendations for a national policy on human cloning. That group — the National Bioethics Advisory Commission (NBAC) — has been working feverishly to put its wisdom on paper, and at a meeting on 17 May, members agreed on a near-final draft of their recommendations.

NBAC will ask that Clinton’s 90-day ban on federal funds for human cloning be extended indefinitely, and possibly that it be made law. But NBAC members are planning to word the recommendation narrowly to avoid new restrictions on research that involves the cloning of human DNA or cells — routine in molecular biology. The panel has not yet reached agreement on a crucial question, however, whether to recommend legislation that would make it a crime for private funding to be used for human cloning.

In a draft preface to the recommendations, discussed at the 17 May meeting, Shapiro suggested that the panel had found a broad consensus that it would be “morally unacceptable to attempt to create a human child by adult nuclear cloning.” Shapiro explained during the meeting that the moral doubt stems mainly from fears about the risk to the health of the child. The panel then informally accepted several general conclusions, although some details have not been settled.
NBAC plans to call for a continued ban on federal government funding for any attempt to clone body cell nuclei to create a child. Because current federal law already forbids the use of federal funds to create embryos (the earliest stage of human offspring before birth) for research or to knowingly endanger an embryo’s life, NBAC will remain silent on embryo research.
NBAC members also indicated that they would appeal to privately funded researchers and clinics not to try to clone humans by body cell nuclear transfer. But they were divided on whether to go further by calling for a federal law that would impose a complete ban on human cloning. Shapiro and most members favored an appeal for such legislation, but in a phone interview, he said this issue was still “up in the air.”

  1. We can learn from the first paragraph that ________.
    [A] federal funds have been used in a project to clone humans
    [B] the White House responded strongly to the news of cloning
    [C] NBAC was authorized to control the misuse of cloning technique
    [D] the White House has got the panel’s recommendations on cloning

  2. The panel agreed on all of the following except that ________.
    [A] the ban on federal funds for human cloning should be made a law
    [B] the cloning of human DNA is not to be put under more control
    [C] it is criminal to use private funding for human cloning
    [D] it would be against ethical values to clone a human being

  3. NBAC will leave the issue of embryo research undiscussed because ________.
    [A] embryo research is just a current development of cloning
    [B] the health of the child is not the main concern of embryo research
    [C] an embryo’s life will not be endangered in embryo research
    [D] the issue is explicitly stated and settled in the law

  4. It can be inferred from the last paragraph that ________.
    [A] some NBAC members hesitate to ban human cloning completely
    [B] a law banning human cloning is to be passed in no time
    [C] privately funded researchers will respond positively to NBAC’s appeal
    [D] the issue of human cloning will soon be settled

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
要将XML转换为文本,通常可以使用XSLT(Extensible Stylesheet Language Transformations)来实现。下面是一个简单的XSLT示例,将XML转换为文本格式: ```xml <!-- input.xml --> <?xml version="1.0" encoding="UTF-8"?> <root> <element>ABC</element> <element>123</element> </root> ``` ```xslt <!-- transform.xsl --> <?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text" indent="no"/> <xsl:template match="/"> <xsl:for-each select="//element"> <xsl:value-of select="."/> <xsl:text> </xsl:text> <!-- 换行符 --> </xsl:for-each> </xsl:template> </xsl:stylesheet> ``` 使用以上的XSLT样式表,可以将XML文件中的`<element>`元素的文本提取出来并以文本格式输出。下面是一个使用Java语言的示例代码,演示如何使用Java中的Transformer类执行XSLT转换: ```java import javax.xml.transform.*; import javax.xml.transform.stream.*; public class XmlToTextConverter { public static void main(String[] args) throws Exception { // 加载XSLT样式表 Source xslt = new StreamSource(new java.io.File("transform.xsl")); // 创建Transformer对象 Transformer transformer = TransformerFactory.newInstance().newTransformer(xslt); // 加载XML文件 Source xml = new StreamSource(new java.io.File("input.xml")); // 执行转换并输出结果 transformer.transform(xml, new StreamResult(new java.io.File("output.txt"))); } } ``` 执行上述代码后,将生成一个名为`output.txt`的文件,其中包含以下文本内容: ``` ABC 123 ``` 这样就完成了将XML转换为文本的过程。你可以根据实际需求自定义XSLT样式表来实现更复杂的转换。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值